forked from typelets/typelets-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 3.18 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 3.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Basic Index -->
<title>Secure Encrypted Notes</title>
<meta name="description" content="A secure notes app that puts privacy first. Your thoughts are encrypted on your device before they reach our servers." />
<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="apple-touch-icon" href="/apple-touch-icon.png" />
<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 - Encrypted Notes, Simplified" />
<meta property="og:description" content="A secure notes app that puts privacy first. Your thoughts are encrypted on your device before they reach our servers." />
<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 - Encrypted Notes, Simplified" />
<meta name="twitter:description" content="A secure notes app that puts privacy first. Your thoughts are encrypted on your device before they reach our servers." />
<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">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>