28 lines
795 B
HTML
28 lines
795 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ecoconnect</title>
|
|
</head>
|
|
<body class="text-foreground bg-background absolute inset-0">
|
|
<script type="module">
|
|
const prefersDarkMode = window.matchMedia("(prefers-color-scheme: dark)");
|
|
const body = document.querySelector("body");
|
|
|
|
function updateTheme() {
|
|
if (prefersDarkMode.matches) {
|
|
body.classList.add("dark");
|
|
} else {
|
|
body.classList.remove("dark");
|
|
}
|
|
}
|
|
|
|
updateTheme();
|
|
prefersDarkMode.addEventListener("change", updateTheme);
|
|
</script>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|