diff --git a/src/components/ButtonLink.astro b/src/components/ButtonLink.astro
index aedf909..42e3c05 100644
--- a/src/components/ButtonLink.astro
+++ b/src/components/ButtonLink.astro
@@ -1,12 +1,18 @@
---
interface Props {
- href: string;
+ href: string;
+ event?: string;
+ eventTitle?: string;
}
-const { href } = Astro.props;
+const { href, event, eventTitle } = Astro.props;
---
-
+
-
diff --git a/src/components/Footer.astro b/src/components/Footer.astro
index 4a97d73..a53d24d 100644
--- a/src/components/Footer.astro
+++ b/src/components/Footer.astro
@@ -6,4 +6,8 @@ const today = new Date();
class="py-4 text-sm text-center bg-dark text-light absolute bottom-0 w-full"
>
© {today.getFullYear()} Terakoda, LLC. All rights reserved.
+
diff --git a/src/components/Header.astro b/src/components/Header.astro
index 8a0f57b..f657cba 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -4,10 +4,6 @@ import HeaderLogo from "../assets/HeaderLogo.png";
---