-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:[email protected]&display=swap"
rel="stylesheet"
/>
<title>Habitrack</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Quicksand', sans-serif;
font-weight: 600;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body * {
box-sizing: border-box;
}
#root {
height: 100vh;
display: flex;
flex-direction: column;
}
.loader-container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.loader-container img {
margin-right: 8px;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div class="loader-container">
<img
src="/android-chrome-192x192.png"
alt="Habilify logo"
width="16"
height="16"
/>
We're preparing the app...
</div>
</div>
</body>
<script type="module" src="/src/index.tsx"></script>
</html>