-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CapForEat</title>
<script src="https://cdn.tailwindcss.com"></script>
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.webmanifest">
<!-- Theme color for address bar -->
<meta name="theme-color" content="#16a34a">
<!-- Apple touch icon -->
<link rel="apple-touch-icon" href="/pwa-192x192.png">
<!-- Prevent Chrome from showing the URL bar on standalone mode -->
<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">
<script type="importmap">
{
"imports": {
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.559.0",
"react-dom/client": "https://aistudiocdn.com/react-dom@^19.2.1/client",
"react-dom": "https://aistudiocdn.com/react-dom@^19.2.1",
"react": "https://aistudiocdn.com/react@^19.2.1",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.32.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"react/": "https://aistudiocdn.com/react@^19.2.1/"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="app.tsx"></script>
</body>
</html>