aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/layouts')
-rw-r--r--apps/website/src/layouts/Layout.astro6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/website/src/layouts/Layout.astro b/apps/website/src/layouts/Layout.astro
index a648f08..84ec6fe 100644
--- a/apps/website/src/layouts/Layout.astro
+++ b/apps/website/src/layouts/Layout.astro
@@ -8,7 +8,7 @@ interface Props {
favicon?: string;
}
-const {
+const {
title = 'Polyfrost',
favicon = Favicon
} = Astro.props;
@@ -32,7 +32,9 @@ const {
<body class="bg-white">
<Navbar />
- <slot />
+ <main class="min-h-screen h-0">
+ <slot />
+ </main>
</body>
</html>