-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 829 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en" class="h-full">
<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>