From 9521960c2e60327638a85688db641ad4d58999a8 Mon Sep 17 00:00:00 2001 From: Dylan Miller Date: Wed, 1 Nov 2023 18:18:39 -0500 Subject: [PATCH 1/5] InfoSec Page --- src/App.js | 2 ++ src/assets/gallery/aboutuspic.svg | 3 +++ src/components/Navbar/Navbar.js | 1 + src/pages/About/About.js | 4 +-- src/pages/InfoSec/InfoSec.css | 0 src/pages/InfoSec/InfoSec.js | 42 +++++++++++++++++++++++++++++++ src/pages/Tutoring/Tutoring.js | 9 +++++-- 7 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 src/assets/gallery/aboutuspic.svg create mode 100644 src/pages/InfoSec/InfoSec.css create mode 100644 src/pages/InfoSec/InfoSec.js diff --git a/src/App.js b/src/App.js index d5614424..d79686b7 100644 --- a/src/App.js +++ b/src/App.js @@ -19,6 +19,7 @@ const Hackathon = lazy(() => import('./pages/Hackathon/Hackathon')); const Privacy = lazy(() => import('./pages/Policy/Privacy')); const Gallery = lazy(() => import('./pages/Gallery/Gallery')); const GalleryEvent = lazy(() => import('./pages/Gallery/GalleryEvent')); +const InfoSec = lazy(() => import('./pages/InfoSec/InfoSec')); const queryClient = new QueryClient(); @@ -43,6 +44,7 @@ const App = () => { } /> } /> } /> + } />