First image deployment
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m46s

This commit is contained in:
2026-01-16 15:15:13 -07:00
parent 64717319cc
commit 38fe0ea9ce
8 changed files with 94 additions and 17 deletions

View File

@@ -1,5 +1,6 @@
---
import '../styles/global.css';
import Footer from '../components/Footer.astro';
interface Props {
title: string;
@@ -18,7 +19,10 @@ const { title } = Astro.props;
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body class="min-h-screen bg-base-100 text-base-content">
<slot />
<body class="h-screen bg-base-100 text-base-content flex flex-col overflow-auto">
<div class="flex-1 overflow-auto">
<slot />
</div>
<Footer />
</body>
</html>