From 3bcce8e3b83baebe1773ffa17ccb74d1f807dc43 Mon Sep 17 00:00:00 2001 From: adhamElhabashy Date: Sun, 24 Sep 2023 21:37:21 +0300 Subject: [PATCH] added position sticky to the header and added footer --- src/App.jsx | 2 ++ src/sections/Footer/Footer.jsx | 21 +++++++++++++++++++++ src/sections/Graphs/Charts/Charts.jsx | 2 +- src/sections/Home/Header/Header.jsx | 9 +++++++-- src/sections/Home/Home.jsx | 2 +- src/sections/Home/Landing/Landing.css | 2 +- src/sections/Home/Landing/Landing.jsx | 6 +++--- 7 files changed, 36 insertions(+), 8 deletions(-) create mode 100644 src/sections/Footer/Footer.jsx diff --git a/src/App.jsx b/src/App.jsx index 119c492..bc7ca53 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -3,6 +3,7 @@ import { createTheme, responsiveFontSizes, ThemeProvider } from "@mui/material"; import Home from "./sections/Home/Home"; import Tables from "./sections/Tables/Tables"; import Graphs from "./sections/Graphs/Graphs"; +import Footer from "./sections/Footer/Footer"; // edit the primary color of the theme const theme = createTheme({ @@ -25,6 +26,7 @@ function App() { +