diff --git a/src/layouts/website/SignupLayout.astro b/src/layouts/website/SignupLayout.astro deleted file mode 100644 index 289622b..0000000 --- a/src/layouts/website/SignupLayout.astro +++ /dev/null @@ -1,20 +0,0 @@ ---- -import WebsiteLayout from './WebsiteLayout.astro'; - -interface Props { - signupEnabled: boolean; -} - -const { signupEnabled } = Astro.props; ---- - - - - - - - - diff --git a/src/layouts/website/WebsiteLayout.astro b/src/layouts/website/WebsiteLayout.astro index 92af86d..872c123 100644 --- a/src/layouts/website/WebsiteLayout.astro +++ b/src/layouts/website/WebsiteLayout.astro @@ -7,9 +7,11 @@ import Menu from '@components/website/layout/Menu.svelte'; interface Props { title: string; description?: string; + + footer?: boolean; } -const { title, description } = Astro.props; +const { title, description, footer = true } = Astro.props; --- @@ -19,7 +21,7 @@ const { title, description } = Astro.props; -