-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (36 loc) · 1.85 KB
/
index.html
File metadata and controls
45 lines (36 loc) · 1.85 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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/mask.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SimpleRedact | Secure Image Redaction</title>
<meta name="description"
content="Privacy-first image redaction. Redact sensitive data locally in your browser with AI-powered auto-detection. No uploads, no servers, zero-trust." />
<meta name="keywords"
content="redact, image redaction, privacy, security, pixelation, ai detection, florence-2, browser ai, pii protection" />
<meta name="author" content="Razi Syed" />
<meta name="theme-color" content="#0c0a09" />
<link rel="llms" href="/llms.txt" />
<!-- Apple Web App -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="SimpleRedact" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="SimpleRedact - Secure Image Redaction" />
<meta property="og:description"
content="A simple, secure, and client-side image redaction tool. Redact images directly in your browser without uploading to any server." />
<meta property="og:image" content="/result.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="SimpleRedact - Secure Image Redaction" />
<meta property="twitter:description"
content="A simple, secure, and client-side image redaction tool. Redact images directly in your browser without uploading to any server." />
<meta property="twitter:image" content="/result.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>