added about me section to navbar

This commit is contained in:
2026-01-06 19:58:56 -06:00
parent 2a56bd1b3a
commit 31b9e665b5

View File

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