-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
/>
<title>Zax</title>
<meta name="description" content="Pew pew pew">
<meta name="apple-mobile-web-app-title" content="Zax">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#000">
<style>
@import "/assets/styles/app.scss";
</style>
<link rel="preload" href="/fonts/edundot.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/joystix.woff2" as="font" type="font/woff2" crossorigin />
</head>
<body>
<div id="loading">
Loading<span>.</span><span>.</span><span>.</span>
</div>
<div id="canvas"></div>
<script type="module" src="/src/root.tsx"></script>
</body>
</html>