Spaces:
Sleeping
Sleeping
File size: 810 Bytes
471f166 00d312c 471f166 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/jpeg" href="/assets/favicon.jpeg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pochi</title>
<!-- Prevent FOUC: Apply theme class before CSS loads -->
<script>
(function () {
try {
var darkMode = localStorage.getItem('darkMode');
if (darkMode === 'true' || (darkMode === null && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
} else {
document.documentElement.classList.add('light');
}
} catch (e) { }
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html> |