branch:
index.html
850 bytesRaw
<!doctype html>
<html lang="en" class="h-full" data-theme="workers">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Voice Agent</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<script>
// Prevent flash of wrong mode
(() => {
const prefersDark = window.matchMedia(
"(prefers-color-scheme: dark)"
).matches;
const mode = prefersDark ? "dark" : "light";
document.documentElement.setAttribute("data-mode", mode);
document.documentElement.style.colorScheme = mode;
})();
</script>
</head>
<body class="h-full bg-kumo-base text-kumo-default antialiased">
<div id="root" class="h-full"></div>
<script src="/src/client.tsx" type="module"></script>
</body>
</html>