-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.33 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="taskometer — shape your day, loop it forward." />
<meta name="theme-color" content="#403f4d" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/logo128.png" />
<link rel="manifest" href="/manifest.json" />
<title>taskometer</title>
<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=Caveat:wght@400;500;600;700&family=Shadows+Into+Light&family=JetBrains+Mono:wght@300;400;500&display=swap"
rel="stylesheet"
/>
<style>
html, body { margin: 0; padding: 0; background: #FAF3EB; }
#loading {
margin: 40px auto;
font-family: 'Caveat', 'Helvetica', 'Arial', sans-serif;
font-weight: lighter;
color: #4A433C;
text-align: center;
font-size: 22px;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div id="loading">loading...</div>
</div>
<script type="module" src="./src/main.jsx"></script>
</body>
</html>