-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.4 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="origin-trial" content="AhE70ePTVg0CVKXFvfX92NE5EXxbRnxBjbBoXlDhOzkhQLO/mFQGC/Qy3Tiwz2yXoRHWi9v0p8BXASbr/SGfhAgAAABmeyJvcmlnaW4iOiJodHRwczovL2JyZWNodGRyLmdpdGh1Yi5pbzo0NDMiLCJmZWF0dXJlIjoiQUlQcm9tcHRBUElNdWx0aW1vZGFsSW5wdXQiLCJleHBpcnkiOjE3NzQzMTA0MDB9">
<title>AI Guess Who?</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap"
rel="stylesheet"
/>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.1.1",
"react-dom/": "https://esm.sh/react-dom@^19.1.1/",
"react/": "https://esm.sh/react@^19.1.1/",
"@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^4.7.0",
"vite": "https://esm.sh/vite@^7.0.6"
}
}
</script>
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>