-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (73 loc) · 2.39 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!-- Doctype HTML5 -->
<!doctype html>
<html
lang="en"
dir="ltr"
class="dark bg-neutral-750 font-body text-neutral-300 subpixel-antialiased"
>
<head>
<!-- Set character encoding for the document -->
<meta charset="utf-8" />
<!-- Viewport for responsive web design -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<!-- HTML Meta -->
<!-- Document Title -->
<title>%VITE_APP_NAME%</title>
<meta name="apple-mobile-web-app-title" content="%VITE_APP_NAME%" />
<meta name="application-name" content="%VITE_APP_NAME%" />
<!-- Meta Description -->
<meta name="description" content="%VITE_APP_DESCRIPTION%" />
<!-- Icons -->
<link
rel="icon"
type="image/png"
sizes="80x80"
href="/000047_hr1.png?v=1"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="/apple-touch-icon.png?v=1"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png?v=1"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png?v=1"
/>
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=1" color="#ac3a3b" />
<meta name="msapplication-TileColor" content="#383838" />
<meta name="theme-color" content="#ac3a3b" />
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="%VITE_APP_NAME%" />
<meta itemprop="description" content="%VITE_APP_DESCRIPTION%" />
<!-- openGraph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="%VITE_APP_NAME%" />
<meta property="og:description" content="%VITE_APP_DESCRIPTION%" />
<meta property="og:image" content="/000047_hr1.png?v=1" />
<meta property="og:image:width" content="80" />
<meta property="og:image:height" content="80" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:image" content="/000047_hr1.png?v=1" />
<!-- oEmbed -->
<link type="application/json+oembed" href="/oembed.json?v=1" />
<!-- Preconnects -->
<!-- <link rel="preconnect" href="https://xivapi.com" crossorigin="" /> -->
</head>
<body>
<div id="root" class="flex h-dvh flex-col"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>