diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 806a3464..01494b1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,8 @@ name: CI +env: + ASTRO_STUDIO_APP_TOKEN: ${{ secrets.ASTRO_STUDIO_APP_TOKEN }} + on: push: branches: main 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];