-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (29 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>evitaLab</title>
</head>
<body>
<!-- evitaLab app - do not remove -->
<div id="app">
<div style="position: absolute; left: 0; right: 0; top: 0; bottom: 0; display: grid; align-items: center; justify-content: center; color: white; background-color: #131323">
<div style="display: flex; flex-direction: column; align-items: center">
<img
src="/logo/evitalab-logo.svg"
width="240"
height="240"
alt=""
/>
<div style="font-family: Poppins, sans-serif !important;">
<h1 style="margin-bottom: 0.5rem; font-weight: bold; font-size: 4.375rem;">evitaLab</h1>
<p style="font-size: 1rem; text-align: center">Loading ...</p>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>