-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 829 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
<!doctype html>
<html class="bg-black" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#813338"/>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link
rel="preload"
href="/src/assets/fonts/CommodorePixelized.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<title>SKALD Calculator</title>
</head>
<body class="scrollbar overflow-auto">
<div class="flex flex-col crt h-fit min-h-screen overflow-y-auto overflow-x-hidden min-w-[386px]" id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>