aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/layouts
diff options
context:
space:
mode:
authorLynithDev <61880709+LynithDev@users.noreply.github.com>2023-10-16 21:23:42 +0200
committerLynithDev <61880709+LynithDev@users.noreply.github.com>2023-10-16 21:23:42 +0200
commit11fd60da81dd78f5fb99bc061078e1b13bbe082a (patch)
tree48c44587ac728b23c1557f770c1661f43cb492d3 /apps/website/src/layouts
parent33197b013f3c643d6c6dada41470459d2f90b4c0 (diff)
downloadNexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.gz
Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.tar.bz2
Nexus-11fd60da81dd78f5fb99bc061078e1b13bbe082a.zip
Button + Section component, new Icon component + new colors
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>