-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (59 loc) · 2.24 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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" />
<title>Noto - Note taking app</title>
<meta property="og:url" content="https://note.msar.me/" />
<meta property="og:type" content="Application" />
<meta property="og:title" content="Noto App" />
<meta
property="og:description"
content="Simple browser based note taking app, for share and quick save."
/>
<meta
property="og:image"
content="https://note.msar.me/screenshot.png"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@4msar" />
<meta name="twitter:title" content="Noto" />
<meta
name="twitter:description"
content="Simple Realtime Note Taking Application."
/>
<meta
name="twitter:image"
content="https://note.msar.me/screenshot.png"
/>
<meta
name="description"
content="Simple note taking application with realtime sync."
/>
<meta name="owner" content="Saiful Alam" />
<meta itemprop="name" content="Noto" />
<meta
itemprop="description"
content="Simple note taking application with realtime sync."
/>
<link rel="apple-touch-icon" href="/logo128.png" sizes="128x128" />
<link rel="mask-icon" href="/logo512.png" color="#f1c40f" />
<link rel="apple-touch-icon" href="/logo512.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;800&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.msar.me/fonts/kalpurush/font.css"
rel="stylesheet"
/>
<meta name="theme-color" content="#94a3b8" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>