-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 2.23 KB
/
index.html
File metadata and controls
64 lines (56 loc) · 2.23 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
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Charset -->
<meta charset="utf-8" />
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Theme Color -->
<meta name="theme-color" content="#f1c40f" />
<!-- Favorite Icon -->
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
<!-- SEO -->
<meta
name="description"
content="Speednote, as its name suggests, is an optimized PWA to quickly type notes as fast as possible. Put your thoughts here before you move them to another storage!"
/>
<meta property="og:title" content="Speednote" />
<meta
property="og:description"
content="Speednote, as its name suggests, is an optimized PWA to quickly type notes as fast as possible. Put your thoughts here before you move them to another storage!"
/>
<meta property="og:site_name" content="Speednote" />
<meta property="og:locale" content="en_US" />
<meta
property="og:image"
content="https://speednote.nicholasdw.app/speednote-seo.jpeg"
/>
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="Speednote's characteristic image" />
<meta property="og:type" content="website" />
<!-- PWA -->
<link rel="manifest" href="/manifest.webmanifest" />
<!-- Title -->
<title>Speednote — Quickly input your thoughts</title>
<!-- Load Initial Theme (prevent FOUC) -->
<script>
const isDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
if (isDark) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
</script>
<!-- Load TailwindCSS as inline text to prevent FOUC -->
<link rel="stylesheet" href="/app/index.css" />
</head>
<body>
<noscript>Please enable JavaScript to use Speednote.</noscript>
<div
id="root"
class="selection:bg-selection selection:text-black dark:bg-linear-to-b bg-gray-50 text-gray-800 transition-colors duration-300 dark:bg-gray-950 dark:text-gray-200"
></div>
<script src="/app/index.tsx" type="module"></script>
</body>
</html>