-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.76 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
38
39
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#00B380" />
<meta name="description" content="From talk to insight. AI-powered meeting transcription and summaries." />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="MINTZA" />
<meta property="og:title" content="MINTZA" />
<meta property="og:description" content="From talk to insight. AI-powered meeting transcription and summaries." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/favicon.svg" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="MINTZA" />
<meta name="twitter:description" content="From talk to insight." />
<link rel="manifest" href="/manifest.json" />
<title>MINTZA — From talk to insight</title>
<style>
/* Prevent accidental zoom on mobile: block double-tap zoom, keep scroll/tap. */
html {
touch-action: manipulation;
}
</style>
<script>
// iOS Safari ignores user-scalable=no, so block pinch-zoom explicitly.
document.addEventListener('gesturestart', function (e) {
e.preventDefault()
})
</script>
</head>
<body class="bg-white text-ink font-sans antialiased">
<div id="app" class="min-h-screen"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>