feat(v12-m): header bandeau Trans-Former / Jules Neny / baseline palette terre

This commit is contained in:
Jules Neny
2026-05-11 18:41:51 +02:00
parent 78dde6a2a3
commit 3ba4628818
4 changed files with 66 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
---
import '../styles/global.css';
import Footer from '../components/astro/Footer.astro';
import SiteHeader from '../components/astro/SiteHeader.astro';
interface Props {
title?: string;
@@ -28,8 +29,11 @@ const {
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
</head>
<body class="m-0 bg-white text-neutral-900 antialiased">
<slot />
<body class="m-0 bg-white text-neutral-900 antialiased min-h-screen flex flex-col">
<SiteHeader />
<div class="flex-1 flex flex-col min-h-0">
<slot />
</div>
<Footer />
</body>
</html>