Files
pirats/frontend/index.html
2026-06-12 16:57:07 -07:00

20 lines
651 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rats with Gats</title>
<script>
// Apply the saved theme before first paint to avoid a flash of the
// wrong palette. lib/theme.js owns this key afterwards.
document.documentElement.dataset.theme =
localStorage.getItem('pirats-theme') === 'dark' ? 'dark' : 'light';
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>