-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>In the Loop - Collaborative Notebooks</title>
<meta
name="description"
content="Collaborative notebooks where AI, code, and prose work together in real-time"
/>
<meta name="theme-color" content="#ffffff" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<!-- Preconnect to sync backend to speed up initial connection -->
<link rel="preconnect" href="%VITE_LIVESTORE_SYNC_URL%" />
<!-- Prevent tap highlighting on mobile -->
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- PWA and mobile optimization -->
<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"
/>
</head>
<body>
<div id="react-app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>