-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
</script>
<meta name="description" content="Web app (personal project) for keeping track of how long activities take" />
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebApplication",
"name": "Time Holder",
"author": {
"@type": "Person",
"name": "Antanas Ga"
},
"description": "Web app (personal project) for keeping track of how long activities take",
}
</script>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tick calculator</title>
</head>
<body class="min-h-screen bg-stone-100 dark:bg-stone-900 dark:text-white transition-all">
<div id="app" class="min-h-[inherit]"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>