-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/img/icon-16.png" type="image/png" size="16x16" />
<link rel="icon" href="/img/icon-32.png" type="image/png" size="32x32" />
<link rel="apple-touch-icon" href="/img/maskable.png" type="image/png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MyWeek</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet" />
<link rel="manifest" href="manifest.json" />
<meta name="description" content="Weekly planner and to-do list app" />
<meta name="author" content="Thien Nguyen" />
<meta name="keywords" content="planner, to-do, note, productive" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@hey_thien" />
<meta name="twitter:title" content="MyWeek - Weekly planner and to-do list app" />
<meta name="twitter:description" content="Enhance your productivity, manage your stuff in a week calendar view" />
<meta name="twitter:image" content="/img/share-image.png" />
<meta property="og:image" content="/img/share-image.png" />
<meta property="og:title" content="MyWeek - Weekly planner and to-do list app" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Enhance your productivity, manage your stuff in a week calendar view" />
<meta name="theme-color" content="#111827" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="MyWeek" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>