-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 1.07 KB
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">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/icons/32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VoxCtrl</title>
<script>
if (window.location.pathname.startsWith('/overlay')) {
document.documentElement.style.background = 'transparent';
document.documentElement.style.backgroundColor = 'transparent';
document.write('<style>html, body, #app { background: transparent !important; background-color: transparent !important; }</style>');
}
</script>
<meta name="description" content="VoxCtrl - Smart voice command control panel and transcription tool powered by local AI." />
<meta property="og:title" content="VoxCtrl" />
<meta property="og:description" content="Smart voice command control panel and transcription tool powered by local AI." />
<meta property="og:type" content="website" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>