Build Jellomator MVP
All checks were successful
docker / build-and-push (push) Successful in 49s

This commit is contained in:
Space-Banane
2026-05-20 20:36:28 +02:00
parent ce0dc0880c
commit 3991a01ec7
18 changed files with 3830 additions and 0 deletions

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jellomator</title>
<script>
if (localStorage.theme === 'light') document.documentElement.classList.remove('dark');
else document.documentElement.classList.add('dark');
</script>
</head>
<body class="bg-slate-950 text-slate-100 antialiased">
<div id="root"></div>
<script type="module" src="/frontend/src/main.tsx"></script>
</body>
</html>