-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (27 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- General Meta -->
<meta name="keywords" content="Sleep, web" />
<meta name="description" content="Optimize sleep"/>
<meta content="Michaluser" name="author" />
<!-- Open Graph -->
<meta property="og:title" content="Sleep Calculator" />
<meta property="og:description" content="Optimize sleep" />
<meta property="og:image" content="/embed.png" />
<meta property="og:url" content="https://sleepcalc.vercel.app" />
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:title" content="Sleep Calc" />
<meta name="twitter:image" content="/embed.png" />
<meta content="summary_large_image" name="twitter:card" />
<title>Sleep Calculator</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>