-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 889 Bytes
/
index.html
File metadata and controls
34 lines (32 loc) · 889 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1"
/>
<title>Open Pokémon Collector</title>
<meta
name="description"
content="Free local Pokémon collections!"
/>
<meta name="theme-color" content="#0f172a" />
<meta name="color-scheme" content="light dark" />
<!-- Favicon / icons (adjust paths as needed) -->
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<body>
<noscript>
JavaScript is required to run this application.
</noscript>
<div id="app"></div>
<script
type="module"
src="/src/main.tsx"
crossorigin="anonymous"
></script>
</body>
</html>