diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 91e37b8..cecfe36 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -9,6 +9,7 @@ interface Props { site_disclaimer?: string; site_privacy?: string; site_copyright?: string; + banner_footer_message?: string; } const { @@ -19,6 +20,7 @@ const { site_disclaimer = "**Disclaimer:** This website is a community-driven noncommercial undertaking. It is operated solely for informational and educational purposes.", site_privacy = "**Privacy:** This site uses no cookies and performs no user tracking or logging.", site_copyright = "**Copyright:** None. This work is marked", + banner_footer_message = "Add countdown banner to your site", } = Astro.props; ---