-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (87 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<link
rel="stylesheet"
type="text/css"
href="/critical.css"
id="critical-css"
/>
<link
rel="manifest"
href="/manifest.json"
crossorigin="use-credentials"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="https://betterdo.app/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
href="https://betterdo.app/favicon.ico"
/>
<link rel="manifest" href="https://betterdo.app/site.webmanifest" />
<link
rel="mask-icon"
href="https://betterdo.app/safari-pinned-tab.svg"
color="#5bbad5"
/>
<meta name="msapplication-TileColor" content="#da532c" />
<title>BetterDo.</title>
<meta name="description" content="The better task manager" />
<link rel="canonical" href="https://betterdo.app/app/" />
<meta property="og:image:width" content="183" />
<meta property="og:image:height" content="183" />
<meta
property="og:description"
content="A todo application designed with you in mind. Featuring shared lists, personalization, and a slick user interface."
/>
<meta property="og:title" content="Introducing BetterDo" />
<meta property="og:url" content="https://betterdo.app/" />
<meta property="og:image" content="https://betterdo.app/og-image.jpg" />
<meta name="twitter:creator" content="@branclon_" />
<meta name="twitter:card" content="summary" />
</head>
<body>
<section class="loader">
<svg
id="spinner"
width="65px"
height="65px"
viewBox="0 0 66 66"
xmlns="http://www.w3.org/2000/svg"
>
<circle
class="path"
fill="none"
stroke-width="6"
stroke-linecap="round"
cx="33"
cy="33"
r="30"
></circle>
</svg>
</section>
<section class="main-container"></section>
</body>
<script type="module" src="./src/index.tsx"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-55983139-4"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-55983139-4');
</script>
</html>