perfect-postcode/frontend/src/index.html
2026-02-01 13:07:24 +00:00

18 lines
422 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Narrowit</title>
<script>
(function() {
if (localStorage.getItem('theme') === 'dark') {
document.documentElement.classList.add('dark');
}
})();
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>