From e97cd1b203ae7569ae0e21a0755b39acda987ff9 Mon Sep 17 00:00:00 2001 From: Akash Date: Thu, 4 Dec 2025 21:44:44 +0530 Subject: [PATCH] feat: added legal pages --- src/App.jsx | 12 ++- src/components/Footer.jsx | 15 ++++ src/components/Footer.module.css | 97 ++++++++++++++------ src/components/Header.jsx | 120 +++++++++++++++---------- src/components/Header.module.css | 47 ++++++++++ src/pages/legal/About.jsx | 94 +++++++++++++++++++ src/pages/legal/Contact.jsx | 45 ++++++++++ src/pages/legal/PrivacyPolicy.jsx | 89 ++++++++++++++++++ src/pages/legal/RefundPolicy.jsx | 63 +++++++++++++ src/pages/legal/TermsAndConditions.jsx | 104 +++++++++++++++++++++ 10 files changed, 610 insertions(+), 76 deletions(-) create mode 100644 src/pages/legal/About.jsx create mode 100644 src/pages/legal/Contact.jsx create mode 100644 src/pages/legal/PrivacyPolicy.jsx create mode 100644 src/pages/legal/RefundPolicy.jsx create mode 100644 src/pages/legal/TermsAndConditions.jsx diff --git a/src/App.jsx b/src/App.jsx index b681fab..3130329 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -16,6 +16,11 @@ import NotFound from './components/NotFound' import Profile from "./pages/Profile"; import PayoutDashboard from "./pages/PayoutDashboard"; import AdminRoute from "./routes/AdminRoutes"; +import PrivacyPolicy from "./pages/legal/PrivacyPolicy"; +import TermsAndConditions from "./pages/legal/TermsAndConditions"; +import RefundPolicy from "./pages/legal/RefundPolicy"; +import Contact from "./pages/legal/Contact"; +import About from "./pages/legal/About"; function InterceptorBoot() { const navigate = useNavigate(); @@ -51,9 +56,14 @@ function App() { - } /> + } /> } /> } /> + } /> + } /> + } /> + } /> + } />