From 91223f764bc5b4bb70da22f5fcaad1dcfb9cddba Mon Sep 17 00:00:00 2001 From: Dalton Burkhart Date: Mon, 19 May 2025 21:34:40 -0400 Subject: [PATCH 01/11] Initial changes for basic format. Still need to work on responsiveness --- nefac-website/src/App.tsx | 2 + .../EducationInitiativePage.tsx | 60 +++++++++++++++++++ .../InitiativeDescription.tsx | 29 +++++++++ .../education-initiative-page/Sidebar.tsx | 31 ++++++++++ 4 files changed, 122 insertions(+) create mode 100644 nefac-website/src/app/components/education-initiative-page/EducationInitiativePage.tsx create mode 100644 nefac-website/src/app/components/education-initiative-page/InitiativeDescription.tsx create mode 100644 nefac-website/src/app/components/education-initiative-page/Sidebar.tsx diff --git a/nefac-website/src/App.tsx b/nefac-website/src/App.tsx index 6900fc6..6804a99 100644 --- a/nefac-website/src/App.tsx +++ b/nefac-website/src/App.tsx @@ -9,6 +9,7 @@ import MissionPage from "./app/pages/mission/page"; import Home from "./app/page"; import LeadershipPage from "./app/pages/leadership/leader-page"; import SubscribePage from "./app/pages/subscribe/page"; +import EducationInitiativePage from "./app/components/education-initiative-page/EducationInitiativePage"; const App = () => { return ( @@ -21,6 +22,7 @@ const App = () => { } /> } /> } /> + } />