-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (58 loc) · 2.48 KB
/
Copy pathindex.html
File metadata and controls
60 lines (58 loc) · 2.48 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/journal-icon-light.svg"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/svg+xml"
href="/journal-icon-dark.svg"
media="(prefers-color-scheme: dark)"
/>
<link rel="manifest" href="/manifest.webmanifest" />
<meta name="theme-color" content="#262626" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
/>
<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=Aleo:ital,wght@0,100..900;1,100..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet"
/>
<title>Journal</title>
<meta
name="description"
content="A thinking space for your notes, tasks, moods, and intentions. End-to-end encrypted."
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Journal" />
<meta property="og:title" content="Journal — a thinking space" />
<meta
property="og:description"
content="A thinking space for your notes, tasks, moods, and intentions. End-to-end encrypted."
/>
<meta property="og:url" content="https://journal.byearlybird.com" />
<meta property="og:image" content="https://journal.byearlybird.com/og-wide-1200x630.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Journal — a thinking space, by Early Bird" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Journal — a thinking space" />
<meta
name="twitter:description"
content="A thinking space for your notes, tasks, moods, and intentions. End-to-end encrypted."
/>
<meta name="twitter:image" content="https://journal.byearlybird.com/og-wide-1200x630.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>