-
Notifications
You must be signed in to change notification settings - Fork 107
/
index.html
60 lines (55 loc) · 1.73 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html
lang="en"
class="max-w-screen h-screen max-h-screen text-white overflow-x-hidden html-scrollbar-adjust"
>
<head>
<!-- Other Meta Tags -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,maximum-scale=5"
/>
<!-- Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:image:width" content="150" />
<meta property="og:image:height" content="150" />
<!-- Manifest -->
<link rel="manifest" href="/src/assets/favicon/manifest.json" />
<!-- Images -->
<link
rel="icon"
type="image/ico"
href="/src/assets/favicon/favicon.ico"
/>
<link
rel=" shortcut icon"
type="image/ico"
href="/src/assets/favicon/favicon.ico"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/src/assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/src/assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/src/assets/favicon/favicon-16x16.png"
/>
<!-- Addtional Tags -->
<!-- BUILD_REPLACE -->
</head>
<body class="max-w-[500px] h-screen mx-auto">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root" class="p-4"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>