-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
89 lines (86 loc) · 2.94 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html class="fixed h-full w-full" lang="en">
<head>
<title>phived, the anti-procrastination to-do list</title>
<meta
name="description"
content="phived · the anti-procrastination to-do list"
/>
<meta keywords="productive, procrastination, task, list" />
<link rel="canonical" href="https://www.phived.com/" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:url" content="https://www.phived.com/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="phived" />
<meta
property="og:description"
content="phived, the anti-procrastination to-do list"
/>
<meta
property="og:image:secure_url"
content="https://www.phived.com/share-banner.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="phived.com" />
<meta property="twitter:url" content="https://www.phived.com/" />
<meta
name="twitter:title"
content="phived, the anti-procrastination to-do list"
/>
<meta
name="twitter:description"
content="phived, the anti-procrastination to-do list"
/>
<meta
name="twitter:image"
content="https://www.phived.com/share-banner.png"
/>
<meta
name="google-site-verification"
content="R6_yqIps0bS9JxwYUtpbusnOBIb6KfY4Aiwx9TruGZs"
/>
<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=DM+Sans:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!-- the script below is a copy of utils/handleSetTheme.ts. since it
blocks the page render, it isn't imported for maximum performance. -->
<script>
const localStorageTheme = localStorage.getItem("theme");
const isBrowserDark =
window &&
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
const isDarkMode = !!localStorageTheme
? localStorageTheme === "dark"
: isBrowserDark;
if (isDarkMode) {
document.documentElement.classList.add("dark");
localStorage.setItem("theme", "dark");
} else {
document.documentElement.classList.remove("dark");
localStorage.setItem("theme", "light");
}
</script>
</head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-NC0FFZ2WB2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-NC0FFZ2WB2");
</script>
<body class="h-full w-full">
<div class="h-full w-full" id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>