-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
55 lines (50 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todoi</title>
<meta name="apple-mobile-web-app-title" content="Todoi" />
<meta property="og:title" content="Todoi" />
<meta property="og:site_name" content="Todoi" />
<meta
name="description"
content="A task management application with the ability to collaborate with others."
/>
<meta
property="og:description"
content="A task management application with the ability to collaborate with others."
/>
<meta property="og:image" content="/og-image.png" />
<link rel="icon" href="/logo/svg/moderate-1.svg" type="image/x-icon" />
<link rel="apple-touch-icon" href="/logo/png/moderate-1_96x96.png" />
<link
rel="apple-touch-startup-image"
href="/logo/png/moderate-1_1024x1024.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="1024x1024"
href="/logo/png/moderate-1_1024x1024.png"
/>
<link rel="manifest" href="/manifest.json" />
<meta name="language" content="English" />
<meta name="author" content="Young Coders" />
<meta property="og:locale" content="en_US" />
<meta name="revisit-after" content="1 days" />
<meta name="”robots”" content="index, follow" />
<meta name="keywords" content="Todo,Task" />
<meta property="og:type" content="website" />
<meta name="theme-color" content="#343B48" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar" content="#343B48" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<script type="module" src="/src/index.jsx"></script>
</head>
<body>
<main id="Root"></main>
<main id="Uncontrolled-Root"></main>
</body>
</html>