feat: add footer with impressum and datenschutz links

This commit is contained in:
2026-05-18 08:22:27 +02:00
parent 90c8762eb7
commit 3eb46029e9
7 changed files with 1096 additions and 412 deletions

View File

@@ -1,5 +1,6 @@
---
import "@/styles/global.css"
import Footer from "@/components/Footer.astro"
const {
title = "Haarscharf Crimmitschau | Friseur in der Annenstraße",
@@ -19,7 +20,10 @@ const {
<meta property="og:type" content="website" />
<title>{title}</title>
</head>
<body>
<body class="flex min-h-screen flex-col">
<slot />
<div class="mt-auto">
<Footer />
</div>
</body>
</html>