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" }, ];