From cb4b2a6aa874d5e007b2f5b84a6a1df18af45ab9 Mon Sep 17 00:00:00 2001 From: Bharti Vilas Nagpure <104631882+BhartiNagpure@users.noreply.github.com> Date: Fri, 11 Aug 2023 11:09:39 +0530 Subject: [PATCH] footer added in footer pages --- src/index.css | 2 +- src/pages/FooterPages/About/index.jsx | 2 + .../FooterPages/ContributorPage/index.jsx | 2 + src/pages/FooterPages/Feedback/index.jsx | 3 ++ .../FooterPages/FooterPagesFooter/Footer.css | 36 ++++++++++++++ .../FooterPages/FooterPagesFooter/Footer.jsx | 47 +++++++++++++++++++ src/pages/FooterPages/Guidelines/index.jsx | 2 + src/pages/FooterPages/HelpCenter/index.jsx | 2 + src/reusableComponents/index.js | 2 +- 9 files changed, 96 insertions(+), 2 deletions(-) create mode 100644 src/pages/FooterPages/FooterPagesFooter/Footer.css create mode 100644 src/pages/FooterPages/FooterPagesFooter/Footer.jsx diff --git a/src/index.css b/src/index.css index bcc08e739..62b350876 100644 --- a/src/index.css +++ b/src/index.css @@ -262,7 +262,7 @@ input:focus { } .centeredScroll { - margin-left: 0; + margin-left:40%; } .scrollTop:hover { diff --git a/src/pages/FooterPages/About/index.jsx b/src/pages/FooterPages/About/index.jsx index 67bd45fb7..d6727cfa8 100644 --- a/src/pages/FooterPages/About/index.jsx +++ b/src/pages/FooterPages/About/index.jsx @@ -6,6 +6,7 @@ import { useEffect, useState } from "react"; import KeyboardBackspaceIcon from "@mui/icons-material/KeyboardBackspace"; import about from "../../../assets/about-us.webp"; import { useNavigate } from "react-router-dom"; +import Footer from "../FooterPagesFooter/Footer"; const About = () => { const [forks, setForks] = useState(0); @@ -164,6 +165,7 @@ const About = () => { +