-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (26 loc) · 819 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Rin Minase's AniDB using Preact with Vite and deployed to Netlify">
<meta name="viewport" content="initial-scale=1, width=device-width" />
<meta name="theme-color" content="#198754" />
<link rel="icon" type="image/png" href="./favicon.ico" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<style>
#app {
height: 100vh;
overflow-y: hidden;
}
</style>
<title>Rin's AniDB</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>