-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 992 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=1500, initial-scale=1.0" />
<meta charset="UTF-8" />
<title>%VITE_TITLE%</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body class="font-public">
<div
id="container"
class="flex h-full min-h-screen w-full flex-col items-stretch justify-stretch"
></div>
<script type="module" src="./src/index.tsx"></script>
</body>
<noscript>
<div
style="
display: grid;
width: 100vw;
height: 100vh;
align-content: center;
justify-content: center;
"
>
<div>
<h1>JavaScript seems to be disabled</h1>
<h2>Please turn it on to view this website</h2>
<div>
This website may log your search queries in order to diagnose errors,
and to improve the quality and stability of the website.
</div>
</div>
</div>
</noscript>
</html>