21 lines
791 B
HTML
21 lines
791 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="/jellomator.png" />
|
|
<link rel="shortcut icon" href="/jellomator.png" />
|
|
<link rel="apple-touch-icon" href="/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>
|