Add footer to website
This commit is contained in:
@@ -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: BlogLayoutProps;
|
||||
@@ -77,7 +78,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>
|
||||
Reference in New Issue
Block a user