From 364fea590467ed0ba75bfba9a8a233d1ff19abf4 Mon Sep 17 00:00:00 2001 From: Oliver Bryan <04oliverbryan@gmail.com> Date: Sun, 28 Sep 2025 21:45:16 +0100 Subject: [PATCH] lowercase nav items --- src/components/Header.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index c6a63224..ab042f17 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -4,8 +4,8 @@ import NavLink from "./NavLink.astro"; const { currentPage } = Astro.props; const pages = [ - { title: "Home", path: "/" }, - { title: "About", path: "/about" }, + { title: "home", path: "/" }, + { title: "about", path: "/about" }, ]; ---