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