-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stickies - Made with ❤️ by Abidemi Harry</title>
<link rel="shortcut icon" href="/favicon.ico" />
<meta
name="description"
content="Stickies is a simple note-taking web-app built with Vue and TailwindCSS. It allows you to pin sticky notes at random on a board.
It harness the browsers Local Storage for storing notes."
/>
<link href="https://stickies-app.vercel.app/" rel="canonical" />
<meta name="theme-color" content="#ffffff" />
<meta name="apple-mobile-web-app-status-bar-style" content="#ffffff" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Stickies - Made with ❤️ by Abidemi Harry"
/>
<meta property="og:image" content="/og-image.png" />
<meta property="og:url" content="https://stickies-app.vercel.app/" />
<meta
name="twitter:title"
content="Stickies - Made with ❤️ by Abidemi Harry"
/>
<meta
name="twitter:description"
content="Stickies is a simple note-taking web-app built with Vue and TailwindCSS. It allows you to pin sticky notes at random on a board.
It harness the browsers Local Storage for storing notes."
/>
<meta name="twitter:image" content="/og-image.png" />
<meta name="twitter:url" content="https://stickies-app.vercel.app/" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>