forked from wexare-ai/openbrowserclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.13 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.13 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
<!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, viewport-fit=cover" />
<meta name="theme-color" content="#1a1a2e" />
<meta name="description" content="Browser-native personal AI assistant. Zero infrastructure." />
<title>OpenBrowserClaw</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<style>
/* Critical path CSS — prevent flash of unstyled content */
body { margin: 0; }
#app {
height: 100vh;
height: 100dvh;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
/* Loading splash — only applies when #app is empty (before React mounts) */
#app:empty {
display: flex;
align-items: center;
justify-content: center;
}
#app:empty::before { content: 'Loading OpenBrowserClaw...'; font-size: 16px; opacity: 0.5; }
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>