From 6eb16e8937278f92da5ccdf6462892ea2f878eec Mon Sep 17 00:00:00 2001 From: Graham Hall Date: Fri, 10 Feb 2023 19:31:58 -0500 Subject: [PATCH] nav fix --- src/components/Header.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 89acb33..1128ec5 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -4,7 +4,7 @@ console.log(pathname); const navLinks = [ { label: "Blog", icon: "website-with-texticonImage24px", path: "/" }, - { label: "About", icon: "usericonImage24px", path: "/about" }, + { label: "About", icon: "usericonImage24px", path: "/about/" }, ]; ---