initial commit

This commit is contained in:
Thies Mueller
2026-06-20 00:37:22 +02:00
commit 03e1c48832
6 changed files with 892 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sport am Tankumsee Rennplan & Ergebnisse</title>
<link rel="stylesheet" href="style.css">
<script src="config.js"></script>
<script src="app.js" defer></script>
</head>
<body class="bg-slate-100 min-h-screen">
<header class="bg-indigo-600 text-white shadow-md sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-6 py-4">
<h1 class="text-xl font-medium tracking-wide">Sport am Tankumsee</h1>
</div>
</header>
<div class="max-w-7xl mx-auto p-4">
<div id="message-box" class="hidden mb-4"></div>
<br />
<div class="bg-white rounded-xl shadow-sm flex overflow-hidden mb-6">
<button id="tab-rennplan"
class="flex-1 py-4 text-indigo-600 border-b-4 border-indigo-600 font-medium">
Rennplan
</button>
<button id="tab-ergebnisse"
class="flex-1 py-4 text-slate-500 font-medium">
Ergebnisse
</button>
</div>
<div id="rennplan-view">
<div id="rennplan-content" class="space-y-6"></div>
</div>
<div id="ergebnisse-view" class="hidden">
<div id="results-content" class="space-y-6"></div>
</div>
</div>
</body>
</html>