30 lines
931 B
Plaintext
30 lines
931 B
Plaintext
---
|
|
import "@/styles/global.css"
|
|
import Footer from "@/components/Footer.astro"
|
|
|
|
const {
|
|
title = "Haarscharf Crimmitschau | Friseur in der Annenstraße",
|
|
description = "Haarscharf ist ein lokaler Friseursalon in Crimmitschau für Schnitt, Farbe, Styling und Termine nach telefonischer Absprache.",
|
|
} = Astro.props
|
|
---
|
|
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="description" content={description} />
|
|
<meta name="theme-color" content="#f6f1e8" />
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:description" content={description} />
|
|
<meta property="og:type" content="website" />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body class="flex min-h-screen flex-col">
|
|
<slot />
|
|
<div class="mt-auto">
|
|
<Footer />
|
|
</div>
|
|
</body>
|
|
</html>
|