diff --git a/src/components/Footer.astro b/src/components/Footer.astro index d9f43ca..e0c6b46 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -4,9 +4,15 @@ import LinkButton from "./LinkButton.astro"; import socialLinks from "@utils/socialLinks"; const currentYear = new Date().getFullYear(); + +export interface Props { + noMarginTop?: boolean; +} + +const { noMarginTop = false } = Astro.props; --- -