-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
41 lines (36 loc) · 1.07 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Rempo</title>
<link rel="icon" type="image/x-icon" href="/src/assets/favicon.ico" />
<style>
#loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #0b0b0b;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.3s ease-out;
color: white !important;
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="loading-screen" class="flex items-center justify-center flex-col gap-3 cursor-default">
<img src="/logo.png" width="150" height="150" class="size-[150px]" />
<h3 class="text-3xl text-white" style="letter-spacing: 3px;">REMPO</h3>
<span class="loading-spinner loading loading-xl bg-white mt-5"></span>
<span class="absolute bottom-10 text-white">Remember what you were building.</span>
</div>
<div id="root"></div>
<script type="module" src="/src/renderer.jsx"></script>
</body>
</html>