Initial commit: Nadiri Sports TV Timer

This commit is contained in:
Andre
2026-02-27 09:45:03 +01:00
commit eeaaf8811e
18 changed files with 5416 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0f0f0f" />
<title>Nadiri Sports</title>
<style>
html, body {
margin: 0;
padding: 0;
background: #0f0f0f;
color: #e8e8e8;
font-family: system-ui, -apple-system, sans-serif;
overflow: hidden;
height: 100%;
}
#root {
min-height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>