Add footer to website

This commit is contained in:
itsfinniii
2026-04-19 18:03:32 +02:00
parent 2374a6bd22
commit 506a5ed14e
8 changed files with 298 additions and 8 deletions

View File

@@ -2,6 +2,7 @@
import '@/styles/global.css';
import { getSettings } from "@/content/settings/settings";
import { getTextColor } from '@/lib/colors';
import Footer from '@/components/footer/Footer.astro';
interface Props {
settings: WebpageLayoutProps;
@@ -74,7 +75,10 @@ const css = {
<!-- Scripts and Style -->
</head>
<body style={ css } class="bg-[#fcfcfc]">
<slot name="content" />
<body style={ css } class="bg-[#fcfcfc] flex flex-col min-h-screen">
<slot class="grow" name="content" />
<Footer />
</body>
</html>