diff --git a/src/components/Header/Header.astro b/src/components/Header/Header.astro index 660aab45..29117be7 100644 --- a/src/components/Header/Header.astro +++ b/src/components/Header/Header.astro @@ -5,6 +5,21 @@ import Logo from "./Logo.astro"; const currentPath = Astro.url.pathname; const topLevelPath = currentPath.split("/")[1]; + +const navigation = [ + { + label: "Garden", + url: "/garden", + }, + { + label: "About", + url: "/about", + }, + { + label: "Now", + url: "/now", + }, +]; ---
@@ -12,21 +27,17 @@ const topLevelPath = currentPath.split("/")[1];