From 390ffaddb937bc687d68dc3fdfc8d743b4a492c5 Mon Sep 17 00:00:00 2001 From: nickbar01234 Date: Sun, 14 Apr 2024 18:10:22 -0400 Subject: [PATCH] Update styling --- src/app/public/about/page.tsx | 18 ++++++------ src/app/public/layout.tsx | 2 +- src/app/public/team/page.tsx | 6 ++-- src/components/Navbar.tsx | 48 ++++++++++++++++++-------------- src/components/PhotoCarousel.tsx | 2 +- 5 files changed, 41 insertions(+), 35 deletions(-) diff --git a/src/app/public/about/page.tsx b/src/app/public/about/page.tsx index a437bc3a..09b69abc 100644 --- a/src/app/public/about/page.tsx +++ b/src/app/public/about/page.tsx @@ -23,21 +23,19 @@ const AboutLayout = () => { }; }, []); return ( -
- +
+ Our Story -

- The Legacy Project's Origin -

+

The Legacy Project's Origin

The concept of{" "} - The Legacy Project (TLP) + The Legacy Project (TLP) {" "} began in 2018, when{" "} - Arielle Galinsky + Arielle Galinsky , a high school junior at the time, spent her time working at a local senior community in her Massachusetts hometown. Her role allowed her to @@ -47,7 +45,7 @@ const AboutLayout = () => { sense of regret she felt having lost her own grandfathers at a young age, Arielle decided to spearhead{" "} - TLP + TLP {" "} as a personal project.

@@ -148,7 +146,9 @@ const AboutLayout = () => {

)} -

Parallel Stories Unite

+

+ Parallel Stories Unite +

Little did she know that, in the state over from her,{" "} Katie Furey- a sophomore in college who was home for diff --git a/src/app/public/layout.tsx b/src/app/public/layout.tsx index 42734521..75fae204 100644 --- a/src/app/public/layout.tsx +++ b/src/app/public/layout.tsx @@ -11,7 +11,7 @@ const PublicLayout = ({ children }: IPublicLayout) => {

-
+
{children}
diff --git a/src/app/public/team/page.tsx b/src/app/public/team/page.tsx index e4abe3a3..fb43f641 100644 --- a/src/app/public/team/page.tsx +++ b/src/app/public/team/page.tsx @@ -29,7 +29,7 @@ const PublicLayout = () => { }, []); return (
- + Meet TLP

@@ -56,11 +56,11 @@ const PublicLayout = () => { meet_tlp_3

)} - + Our Team our_team - + Press {isSmallScreen ? ( diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index b4743b4c..e64f5b27 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -7,6 +7,21 @@ import { useAuth } from "@hooks"; import logoicon from "../../public/landing/newlegacy-logo.svg"; import Image from "next/image"; +const NAV_ITEMS = [ + { + name: "About Us", + href: "/public/about", + }, + { + name: "Meet TLP", + href: "/public/team", + }, + { + name: "Start a Chapter", + href: "/public/start-chapter", + }, +]; + const Navbar = () => { const [dropdownVisible, setDropdownVisible] = useState(false); const handleMenuClick: React.MouseEventHandler = () => { @@ -29,7 +44,7 @@ const Navbar = () => { }, []); return ( -