kthulu/codebase/apps/web/index.html
2026-03-06 17:17:19 -08:00

22 lines
585 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark" />
<title>kthulu dashboard</title>
<style>
body {
margin: 0;
background: #0a0a0f;
color: #e0e0e0;
font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}
* { box-sizing: border-box; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>