lowercase nav items

This commit is contained in:
Oliver Bryan
2025-09-28 21:45:16 +01:00
parent 96bb19f513
commit 364fea5904

View File

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