-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.56 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1.56 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
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; connect-src 'self' blob: https://huggingface.co https://*.huggingface.co https://*.hf.co; font-src 'self'; frame-src 'self'; img-src 'self' data:; object-src 'none'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob:; style-src 'self' 'unsafe-inline'; worker-src 'self' blob:;" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Keet - Privacy-first real-time transcription. Your audio stays on your device." />
<meta name="theme-color" content="#6B705C" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title>Keet - Real-time Transcription</title>
<!-- PWA Manifest -->
<link rel="manifest" href="./manifest.json" />
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
<link rel="apple-touch-icon" href="./icons/icon-192.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script>
if ('serviceWorker' in navigator && location.hostname !== 'localhost') {
window.addEventListener('load', () => {
navigator.serviceWorker.register('./sw.js')
.then((reg) => console.log('[App] SW registered:', reg.scope))
.catch((err) => console.warn('[App] SW registration failed:', err));
});
}
</script>
</body>
</html>