-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.62 KB
/
Copy pathindex.html
File metadata and controls
34 lines (34 loc) · 1.62 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>answercrypt | Protect your secrets with your answers</title>
<meta
name="description"
content="answercrypt is an open-source web app for client-side encryption. Protect secrets with answers only you know, then store or share encrypted payloads safely."
/>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="answercrypt" />
<meta property="og:title" content="answercrypt | Protect your secrets with your answers" />
<meta
property="og:description"
content="Open-source client-side encryption for recovery keys, private notes, and sensitive text. Create encrypted payloads and unlock them with your answers."
/>
<meta property="og:url" content="https://answercrypt.vercel.app/" />
<meta property="og:image" content="https://answercrypt.vercel.app/og-image.png" />
<meta property="og:image:alt" content="answercrypt logo" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="answercrypt | Protect your secrets with your answers" />
<meta
name="twitter:description"
content="Open-source client-side encryption for recovery keys, private notes, and sensitive text."
/>
<meta name="twitter:image" content="https://answercrypt.vercel.app/og-image.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>