gni commited on
Commit
9b26982
·
1 Parent(s): a0b0dc8

feat: add SEO and social media metadata

Browse files
Files changed (2) hide show
  1. README.md +7 -0
  2. ui/index.html +16 -1
README.md CHANGED
@@ -6,6 +6,13 @@ colorTo: gray
6
  sdk: docker
7
  pinned: false
8
  license: mit
 
 
 
 
 
 
 
9
  ---
10
 
11
  # 🛡️ Redac
 
6
  sdk: docker
7
  pinned: false
8
  license: mit
9
+ tags:
10
+ - security
11
+ - privacy
12
+ - nlp
13
+ - pii-redaction
14
+ - privacy-protection
15
+ - french-nlp
16
  ---
17
 
18
  # 🛡️ Redac
ui/index.html CHANGED
@@ -7,7 +7,22 @@
7
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:ital,wght@0,400;0,500;1,400&display=swap" rel="stylesheet">
9
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
- <title>Redac_Scan</title>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  </head>
12
  <body>
13
  <div id="root"></div>
 
7
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:ital,wght@0,400;0,500;1,400&display=swap" rel="stylesheet">
9
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
10
+ <title>Redac | AI-Powered PII Data Redaction & Sanitization</title>
11
+ <meta name="description" content="Securely redact PII (Personally Identifiable Information) from your documents using AI. Protect sensitive data before sending it to LLMs like GPT or Claude. Supports English and French." />
12
+
13
+ <!-- Open Graph / Facebook -->
14
+ <meta property="og:type" content="website" />
15
+ <meta property="og:url" content="https://lbl-redaction.hf.space" />
16
+ <meta property="og:title" content="Redac | AI-Powered PII Data Redaction" />
17
+ <meta property="og:description" content="Securely sanitize your documents. Automated PII detection and redaction for French and English texts." />
18
+ <meta property="og:image" content="/src/assets/hero.png" />
19
+
20
+ <!-- Twitter -->
21
+ <meta property="twitter:card" content="summary_large_image" />
22
+ <meta property="twitter:url" content="https://lbl-redaction.hf.space" />
23
+ <meta property="twitter:title" content="Redac | AI-Powered PII Data Redaction" />
24
+ <meta property="twitter:description" content="Protect sensitive data before sending to LLMs. Fast, secure, and automated PII redaction." />
25
+ <meta property="twitter:image" content="/src/assets/hero.png" />
26
  </head>
27
  <body>
28
  <div id="root"></div>