From 31b9e665b5d3da302acc45e7d364d5294e48c9b3 Mon Sep 17 00:00:00 2001 From: Ricearoni1245 Date: Tue, 6 Jan 2026 19:58:56 -0600 Subject: [PATCH] added about me section to navbar --- src/components/Navbar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 765c29d..548bb02 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -5,6 +5,7 @@ export function Navbar({ onNav }: { onNav: (id: string) => void }) { const [open, setOpen] = useState(false); const links = [ { id: "home", label: "Intro" }, + { id: "about", label: "About" }, { id: "projects", label: "Projects" }, { id: "experience", label: "Resume" }, ];