From 8b23b0ee0ebdfe24b5cc9f5c6b33894a6c8b684b Mon Sep 17 00:00:00 2001 From: Xevion Date: Sat, 13 May 2023 12:26:58 -0500 Subject: [PATCH] Switch navigation button from #projects to /projects --- src/components/AppWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppWrapper.tsx b/src/components/AppWrapper.tsx index 4eeba19..c85f772 100644 --- a/src/components/AppWrapper.tsx +++ b/src/components/AppWrapper.tsx @@ -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'}, ]