generated from remarkablemark/vite-preact-tailwind-ai-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.11 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/incognito.svg" />
<meta
name="viewport"
content="minimum-scale=1,initial-scale=1,width=device-width"
/>
<meta
name="description"
content="🦸 Secret Identity is an AI chatbot game where you guess a superhero's secret identity."
/>
<meta
property="og:image"
content="https://remarkablegames.org/secret-identity/cover.png"
/>
<script
src="https://unpkg.com/github-corners/dist/embed.min.js"
data-href="https://github.com/remarkablegames/secret-identity"
data-target="_blank"
async
defer
></script>
<title>Secret Identity | remarkablegames</title>
</head>
<body class="flex min-h-screen min-w-80 place-items-center bg-gray-50">
<noscript>You need to enable JavaScript to run this app.</noscript>
<main
class="mx-auto h-fit h-screen w-full max-w-(--breakpoint-xl) place-content-center sm:w-96"
id="app"
></main>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>