From 98d699378c96a26de2ef6a54d08b04519b7ac612 Mon Sep 17 00:00:00 2001 From: Siddhesh Rajale <113630547+Siddheshuncodes@users.noreply.github.com> Date: Wed, 1 Nov 2023 20:42:43 +0530 Subject: [PATCH 1/2] added Blue color to the Nav bar to keep the design consistent --- src/styles/Navbar.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/Navbar.module.css b/src/styles/Navbar.module.css index f3f9aa3..0727d01 100644 --- a/src/styles/Navbar.module.css +++ b/src/styles/Navbar.module.css @@ -12,7 +12,7 @@ justify-content: space-around; align-items: center; height: 75px; - background-color: var(--primary-color); + background-color:#5C4CE4 } /* .navbar .navLeft { From 521a528dde0053f67e8b1184d7ca3b8c2b3ba721 Mon Sep 17 00:00:00 2001 From: Siddhesh Rajale <113630547+Siddheshuncodes@users.noreply.github.com> Date: Sat, 4 Nov 2023 17:33:04 +0530 Subject: [PATCH 2/2] Made changes in the loader --- src/App.jsx | 10 +++++++++- src/components/Events.jsx | 7 +++++-- src/components/Navbar.jsx | 32 ++++++++++++++++---------------- 3 files changed, 30 insertions(+), 19 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index a92239f..6832ff8 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,10 +1,12 @@ import "./App.css"; import Navbar from "./components/Navbar"; import Home from "./pages/Home"; +import Events from "./pages/Events"; // Import the Events component import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; import Footer from "./pages/Footer"; import React from "react"; import BarLoader from "react-spinners/BarLoader "; + function App() { const [loading, setLoading] = React.useState(false); @@ -14,14 +16,20 @@ function App() { setLoading(false); }, 5000); }, []); + return (