-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
41 lines (41 loc) · 1.21 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
<!doctype html>
<html lang="en" data-theme="dark-CeruleanBlue" class="dark cerulean-blue-theme">
<head>
<style>
@font-face {
font-family: "Inter";
src: url("/fonts/Inter-VariableFont.ttf") format("truetype-variations");
font-weight: 100 900;
font-stretch: 75% 125%;
}
.loading_screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #282828;
z-index: -3;
display: grid;
place-items: center;
}
</style>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>New Tab</title>
<meta
name="description"
content="Your personal new tab companion. Plan, navigate, and personalize your space. Focus, inspire, and achieve with every new tab."
/>
</head>
<body>
<div class="loading_screen">
<img src="/logo/64x64.png" alt="Paige logo" />
</div>
<div id="root"></div>
<div id="side_bar_root"></div>
<div id="modal_root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>