38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
---
|
|
import '../styles/global.css';
|
|
|
|
interface Props {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
|
|
const { title, description = "Theater Ziefen - Coming 2029" } = Astro.props;
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content={description} />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap" rel="stylesheet">
|
|
<title>{title} | Theater Ziefen</title>
|
|
</head>
|
|
<body>
|
|
<main class="min-h-[calc(100vh-200px)] flex flex-col items-center *:w-full">
|
|
<slot />
|
|
</main>
|
|
|
|
<footer class="bg-[#2b2b56] text-white py-[--spacing-md] text-center mt-[--spacing-xl] border-t-2 border-white/10">
|
|
<div class="mx-auto px-[--spacing-md] md:px-[--spacing-md] px-[--spacing-sm]">
|
|
<p>© {new Date().getFullYear()} Theater Ziefen. All rights reserved.</p>
|
|
<p class="mt- text-accent font-semibold opacity-90">Coming 2029</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|