-
Notifications
You must be signed in to change notification settings - Fork 91
/
index.html
39 lines (38 loc) · 969 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
<!doctype html>
<html class="min-h-full" lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,maximum-scale=1.0, user-scalable=0"
/>
<title>radishes-music</title>
<style>
.radishes-loading {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #3d3d3d;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div id="app">
<div class="radishes-loading">
<img src="/loading.svg" alt="" />
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<noscript>
<h1>Opinionated, production ready template for Vite and Vue 3</h1>
<p>This site requires JavaScript to work.</p>
</noscript>
</body>
</html>