-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
35 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ogp -->
<meta property="og:title" content="Paperie" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://paperie.app/" />
<meta property="og:image" content="https://paperie.app/logo.png" />
<meta property="og:description" content="Paparie is a simplicity first note-taking PWA for individuals. You can use it just by opening the url. Your notes data is only stored on your browser." />
<title>Paperie</title>
<meta name="description" content="Paparie is a simplicity first note-taking PWA for individuals. You can use it just by opening the url. Your notes data is only stored on your browser.">
<link
rel="icon"
href="/favicon.ico"
>
<link
rel="icon"
href="/favicon-white.ico"
media="(prefers-collor-scheme: dark)"
>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180">
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div
id="app"
class="flex-column"
></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>