Files
jellomator/index.html
Space-Banane 648cb0a929
Some checks failed
docker / build-and-push (push) Has been cancelled
Serve favicon from static public assets
2026-05-20 21:34:26 +02:00

21 lines
812 B
HTML

<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#020617" />
<link rel="icon" type="image/png" sizes="32x32" href="/static/jellomator.png" />
<link rel="shortcut icon" href="/static/jellomator.png" />
<link rel="apple-touch-icon" href="/static/jellomator.png" />
<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>