base structure

This commit is contained in:
2026-03-09 10:02:43 +01:00
parent 5bf74368c3
commit 96aed70fc6
11 changed files with 195 additions and 19 deletions

View File

@@ -0,0 +1,29 @@
---
import "../styles/global.css";
const year = new Date().getFullYear();
---
<html lang="de">
<head>
<meta charset="utf-8" />
<title>Edis Buzzer</title>
</head>
<body class="antialiased bg-slate-50 text-primary pt-16 pb-12">
<nav class="fixed top-0 left-0 w-full z-50 bg-white shadow-bottom px-4 py-3 h-16 flex items-center">
<span class="uppercase font-bold text-xl tracking-narrow font-mono italic">EDIS_BUZZER</span>
</nav>
<main class="mx-auto max-w-screen-lg px-4 py-8 w-full">
<slot />
</main>
<footer class="fixed bottom-0 left-0 w-full z-50 bg-white text-xs text-slate-500 h-12 flex items-center shadow-top">
<div class="mx-auto px-4 w-full text-center">
&copy; 2026-{year} iten engineering. Alle Rechte vorbehalten.
</div>
</footer>
</body>
</html>