-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (155 loc) · 6.35 KB
/
index.html
File metadata and controls
158 lines (155 loc) · 6.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Basic Index -->
<title>Typelets Secure Workspace | iOS, Android & Web | Zero-Knowledge AES-256</title>
<meta name="description" content="Secure encrypted workspace with documents, spreadsheets, diagrams, and code execution. Zero-knowledge privacy. Available on iOS, Android, and Web." />
<meta name="keywords" content="encrypted notes, secure notes app, privacy, end-to-end encryption, note taking, markdown editor, offline notes, AES-256 encryption, zero-knowledge, private notes" />
<meta name="author" content="Typelets" />
<meta name="application-name" content="Typelets" />
<!-- Favicons and Icons -->
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.json" />
<!-- Theme and App Meta -->
<meta name="theme-color" content="#3b82f6" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Typelets" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Typelets Secure Workspace | Zero-Knowledge AES-256" />
<meta property="og:description" content="Secure encrypted workspace with documents, spreadsheets, diagrams, and code execution. Zero-knowledge privacy. Available on iOS, Android, and Web." />
<meta property="og:url" content="https://app.typelets.com" />
<meta property="og:image" content="https://app.typelets.com/og-image.jpg" />
<meta property="og:site_name" content="Typelets" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Typelets Secure Workspace | Zero-Knowledge AES-256" />
<meta name="twitter:description" content="Secure encrypted workspace with documents, spreadsheets, diagrams, and code execution. Zero-knowledge privacy. Available on iOS, Android, and Web." />
<meta name="twitter:image" content="https://app.typelets.com/og-image.jpg" />
<meta name="twitter:site" content="@typelets" />
<meta name="twitter:creator" content="@typelets" />
<!-- Security and Performance -->
<meta name="robots" content="index, follow" />
<meta name="security" content="AES-256 encryption, zero-knowledge architecture" />
<meta name="privacy" content="End-to-end encrypted notes app" />
<link rel="canonical" href="https://app.typelets.com" />
<!-- Google Fonts with Performance Optimization -->
<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=Inter:wght@100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
<!-- Prevent flash of white background -->
<style>
/* Inline critical styles to prevent flash */
:root {
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);
}
html {
background-color: oklch(0.145 0 0);
}
/* noinspection CssUnusedSymbol */
html.light {
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);
background-color: oklch(1 0 0);
}
/* noinspection CssUnusedSymbol */
html.dark {
--background: oklch(0.145 0 0);
--foreground: oklch(0.985 0 0);
background-color: oklch(0.145 0 0);
}
body {
margin: 0;
padding: 0;
background-color: var(--background);
}
</style>
<script>
(function() {
const storageKey = 'typelets-ui-theme';
const theme = localStorage.getItem(storageKey) || 'system';
let resolvedTheme = theme;
if (theme === 'system') {
resolvedTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
document.documentElement.classList.add(resolvedTheme);
// Update theme-color meta tag
const metaThemeColor = document.querySelector('meta[name="theme-color"]');
if (metaThemeColor) {
metaThemeColor.setAttribute('content', resolvedTheme === 'dark' ? 'oklch(0.145 0 0)' : 'oklch(1 0 0)');
}
})();
</script>
<!-- Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Typelets",
"url": "https://app.typelets.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https://app.typelets.com/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Typelets",
"description": "Secure encrypted notes app with zero-knowledge AES-256 encryption and live code execution for 15+ programming languages",
"operatingSystem": ["Web", "iOS", "Android"],
"applicationCategory": ["ProductivityApplication", "DeveloperApplication"],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"downloadUrl": [
"https://apps.apple.com/app/typelets/id6740360262",
"https://play.google.com/store/apps/details?id=com.batalabs.typelets",
"https://app.typelets.com"
],
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"ratingCount": "150"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Bata Labs, LLC",
"url": "https://typelets.com",
"logo": "https://typelets.com/assets/images/logo/logo.png",
"contactPoint": {
"@type": "ContactPoint",
"email": "typelets@typelets.com",
"contactType": "Customer Support"
},
"sameAs": [
"https://github.com/typelets",
"https://x.com/typelets"
]
}
</script>
</head>
<body>
<div id="root"></div>
<!-- noinspection HtmlUnknownTarget -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>