diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index ea37df6..07b67e7 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -24,7 +24,7 @@ const title = ? `${options.title} - ${options.description}` : `${Astro.props.title} - ${options.title}`; const description = Astro.props.description || options.description; -const showFooter = Astro.props.footer || false; +const showFooter = Astro.props.footer || true; ---