Switch navigation button from #projects to /projects

This commit is contained in:
2023-05-13 12:26:58 -05:00
parent d48ccca1c3
commit 8b23b0ee0e

View File

@@ -6,7 +6,7 @@ import Link from "next/link";
const navigation: { id: string, name: string, href: string }[] = [
{id: 'home', name: 'Home', href: '/',},
{id: 'projects', name: 'Projects', href: '/#projects'}, // TODO: Switch this back to /projects once proper page is made
{id: 'projects', name: 'Projects', href: '/projects'},
{id: 'contact', name: 'Contact', href: '/contact'},
]