-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
44 lines (40 loc) · 1.06 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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jellyplayer</title>
<script src="http://localhost:8097"></script>
<style>
.app-loading {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: hsl(256, 100%, 4%);
z-index: 100000;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.app-loading-logo {
width: 65vw;
}
</style>
</head>
<body>
<div class="app-loading">
<img src="./assetsStatic/LogoBig.svg" class="app-loading-logo" />
</div>
<div id="root"></div>
<svg style="width:0;height:0;position:absolute;" aria-hidden="true" focusable="false">
<linearGradient id="clr-gradient-default" x2="1" y2="1">
<stop offset="0%" stop-color="hsl(337, 96%, 56%)" />
<stop offset="100%" stop-color="hsl(273, 100%, 36%)" />
</linearGradient>
</svg>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>