From 431e89d9b9cb6e1afc31911e0d129ca21e10afd4 Mon Sep 17 00:00:00 2001 From: prateeksha17 Date: Wed, 3 Jul 2024 00:12:45 +0530 Subject: [PATCH 1/2] added_footer_links --- src/App.js | 12 ++++- src/Components/Footer/Footer.css | 11 +++- src/Components/Footer/Footer.jsx | 8 +++ src/Components/Footer/Policy/Cookie.css | 50 +++++++++++++++++++ src/Components/Footer/Policy/Cookie.jsx | 31 ++++++++++++ src/Components/Footer/Policy/Privacy.css | 50 +++++++++++++++++++ src/Components/Footer/Policy/Privacy.jsx | 31 ++++++++++++ src/Components/Footer/Policy/Return.css | 50 +++++++++++++++++++ src/Components/Footer/Policy/Return.jsx | 25 ++++++++++ src/Components/Footer/Policy/Shipping.css | 50 +++++++++++++++++++ src/Components/Footer/Policy/Shipping.jsx | 36 +++++++++++++ .../Footer/Policy/TermsOfService.css | 50 +++++++++++++++++++ .../Footer/Policy/TermsOfService.jsx | 31 ++++++++++++ 13 files changed, 433 insertions(+), 2 deletions(-) create mode 100644 src/Components/Footer/Policy/Cookie.css create mode 100644 src/Components/Footer/Policy/Cookie.jsx create mode 100644 src/Components/Footer/Policy/Privacy.css create mode 100644 src/Components/Footer/Policy/Privacy.jsx create mode 100644 src/Components/Footer/Policy/Return.css create mode 100644 src/Components/Footer/Policy/Return.jsx create mode 100644 src/Components/Footer/Policy/Shipping.css create mode 100644 src/Components/Footer/Policy/Shipping.jsx create mode 100644 src/Components/Footer/Policy/TermsOfService.css create mode 100644 src/Components/Footer/Policy/TermsOfService.jsx diff --git a/src/App.js b/src/App.js index d7c9b27..13300ec 100644 --- a/src/App.js +++ b/src/App.js @@ -14,10 +14,15 @@ import About from "./Pages/About"; import Contact from "./Pages/Contact"; import NotFound from "./Pages/NotFound"; import ScrollToTop from "react-scroll-to-top"; -import { useContext, useEffect } from "react"; +import { useContext } from "react"; import { ShopContext } from "./Context/ShopContext"; import Collections from "./Pages/Collections"; import Offers from "./Pages/Offers"; +import Cookie from "./Components/Footer/Policy/Cookie"; +import Shipping from "./Components/Footer/Policy/Shipping"; +import Return from "./Components/Footer/Policy/Return"; +import TermsOfService from "./Components/Footer/Policy/TermsOfService"; +import Privacy from "./Components/Footer/Policy/Privacy"; function App() { const { theme } = useContext(ShopContext); return ( @@ -48,6 +53,11 @@ function App() { } /> } /> } /> + } /> + } /> + } /> + }/> + }/>