-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<meta name="theme-color" content="#18181b" />
<link rel="icon" type="image/png" href="/icon-fav.png" />
<link rel="apple-touch-icon" type="image/png" href="/icon-180x180.png" sizes="180x180" />
<link rel="mask-icon" type="image/png" href="/icon-256x256.png" color="#18181b" />
<link rel="stylesheet" href="/inter/inter.css" />
<title>Habits</title>
<meta name="description" content="A simple habit tracking app" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Habits" />
<meta name="twitter:description" content="A simple habit tracking app" />
<meta name="twitter:image" content="https://habits.arn.sh/banner.png" />
<meta property="og:type" content="summary" />
<meta property="og:site_name" content="Habits" />
<meta property="og:title" content="Habits" />
<meta property="og:description" content="A simple habit tracking app" />
<meta property="og:image" content="https://habits.arn.sh/banner.png" />
</head>
<body style="width: 100vw; height: 100vh">
<div id="root" style="width: 100%; height: 100%"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>