From 69ba99522add462236ca9592b07f00a91ce4aac2 Mon Sep 17 00:00:00 2001 From: Earth Walker Date: Sat, 13 Jun 2026 19:08:42 -0400 Subject: [PATCH] add links to footer and put links in header and footer components to simplify project structure --- website/src/components/Footer.astro | 26 ++++++++++++++++++++++++++ website/src/components/NavMenu.svelte | 25 +++++++++++++++++++++++-- website/src/data/navLinks.js | 22 ---------------------- 3 files changed, 49 insertions(+), 24 deletions(-) delete mode 100644 website/src/data/navLinks.js diff --git a/website/src/components/Footer.astro b/website/src/components/Footer.astro index 89d07f42..44484c48 100644 --- a/website/src/components/Footer.astro +++ b/website/src/components/Footer.astro @@ -1,6 +1,32 @@ +--- +const footerLinks = [ + { + title: "Home", + path: "/", + }, + { + title: "About", + path: "/about", + }, + { + title: "Contact", + path: "/#contact", + }, +]; +--- +