feat(v13-bg): layout 1 ecran fixe + hamburger desktop hide + categorie Pro

This commit is contained in:
Jules Neny
2026-05-11 20:00:16 +02:00
parent e43ec60ecf
commit aa410ce7aa
8 changed files with 38 additions and 22 deletions

View File

@@ -14,7 +14,7 @@ const {
} = Astro.props;
---
<!doctype html>
<html lang="fr">
<html lang="fr" class="h-screen">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
@@ -29,11 +29,15 @@ const {
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
</head>
<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">
<body class="m-0 bg-white text-neutral-900 antialiased h-screen flex flex-col overflow-hidden">
<div class="flex-shrink-0">
<SiteHeader />
</div>
<div class="flex-1 flex flex-col min-h-0 overflow-hidden">
<slot />
</div>
<Footer />
<div class="flex-shrink-0">
<Footer />
</div>
</body>
</html>