diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 958c50d..ca3a074 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -7,11 +7,13 @@ import PageHeader from '../components/PageHeader.astro'; import PageFooter from '../components/PageFooter.astro'; export interface Props { - title: string; backLink?: string; + footer?: boolean; + navigation?: boolean; + title: string; } -const { title, backLink } = Astro.props; +const { backLink, footer = true, navigation, title } = Astro.props; --- @@ -54,13 +56,13 @@ const { title, backLink } = Astro.props; class="flex h-screen flex-col bg-shibui-100 font-sans font-normal leading-relaxed text-shibui-950 common-ligatures dark:bg-shibui-900 dark:text-shibui-200/[0.87]" > - +
- + {footer && }