From 5625b6b19a4adaf5851a5f320af2c38068425145 Mon Sep 17 00:00:00 2001 From: Aarya Chaudhari Date: Sat, 31 Jan 2026 17:41:34 +0530 Subject: [PATCH] feat: add responsive footer with structured grey design --- client/src/App.tsx | 3 ++ client/src/components/Footer.css | 88 ++++++++++++++++++++++++++++++++ client/src/components/Footer.tsx | 56 ++++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 client/src/components/Footer.css create mode 100644 client/src/components/Footer.tsx diff --git a/client/src/App.tsx b/client/src/App.tsx index 762befb8..843e2282 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -4,6 +4,7 @@ import { AppUnProtectedRoutes } from './app/routes'; import { AppProtectedRoutes } from './app/routes/auth-routes'; import useScrollbar from './shared/components/atoms/scrollbar'; import { useAuth } from './shared/hooks/use-auth'; +import Footer from './components/Footer'; const App = memo(() => { const { GlobalScrollbar } = useScrollbar(); @@ -19,6 +20,7 @@ const App = memo(() => { <> +