From b4ef87c17460354940c60291b60c5047360bcaf0 Mon Sep 17 00:00:00 2001 From: Deepak Prajapati Date: Fri, 9 Jan 2026 23:02:58 +0530 Subject: [PATCH] Add global footer component with navigation links and social media --- frontend/src/components/App.js | 2 + frontend/src/components/common/Footer.js | 95 ++++++++++++++++++++++ frontend/src/styles/main.scss | 1 + frontend/src/styles/partials/_footer.scss | 96 +++++++++++++++++++++++ frontend/src/styles/partials/_theme.scss | 8 +- 5 files changed, 201 insertions(+), 1 deletion(-) create mode 100644 frontend/src/components/common/Footer.js create mode 100644 frontend/src/styles/partials/_footer.scss diff --git a/frontend/src/components/App.js b/frontend/src/components/App.js index c3186be8..869b02d2 100644 --- a/frontend/src/components/App.js +++ b/frontend/src/components/App.js @@ -7,6 +7,7 @@ import ProjectPageComponent from "./projects"; import AnalyticsComponent from "./analytics"; import PageNotFoundHandler from "./PageNotFoundHandler"; import Navbar from "./navbar"; +import Footer from "./common/Footer"; const App = props => { return ( @@ -23,6 +24,7 @@ const App = props => { +