-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
47 lines (43 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<meta
name="description"
content="Genshin Impact Character Level-Up Calculator - Calculate how much you need for your characters"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GScale</title>
</head>
<body class="bg-dark-800 text-light-normal">
<noscript>
<div class="flex inset-0 absolute items-center justify-center">
<div class="mx-6 text-center">
<h1 class="font-bold text-white text-2xl">Welcome to GScale without javascript enabled!</h1>
<p class="mt-6 text-lg">To view and use this site you need to have javascript enabled.</p>
</div>
</div>
</noscript>
<div id="app"></div>
<div id="modal"></div>
<div
id="tooltip"
role="tooltip"
class="rounded-md bg-dark-200 shadow-md py-1 px-2 transition-opacity top-0 left-0 absolute pointer-events-none"
style="opacity: 0"
>
<p id="tooltipContent"></p>
<div class="bg-dark-200 h-2 transform w-2 rotate-45 absolute" id="tooltipArrow"></div>
</div>
<script type="module" src="/src/main.ts"></script>
<!-- Cloudflare Web Analytics -->
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "7c719a0a8a1d42f8a970b42bc9102a63"}'
></script>
<!-- End Cloudflare Web Analytics -->
</body>
</html>