gni commited on
Commit ·
0b4a37d
1
Parent(s): 9b26982
feat: complete SEO optimization with robots.txt and sitemap
Browse files- ui/index.html +6 -2
- ui/public/robots.txt +3 -0
- ui/public/sitemap.xml +9 -0
ui/index.html
CHANGED
|
@@ -7,8 +7,12 @@
|
|
| 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 |
-
<
|
| 11 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
<!-- Open Graph / Facebook -->
|
| 14 |
<meta property="og:type" content="website" />
|
|
|
|
| 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 |
+
<link rel="canonical" href="https://lbl-redaction.hf.space" />
|
| 11 |
+
<title>Redac - AI PII Redaction Tool | Sanitize Data for LLMs</title>
|
| 12 |
+
<meta name="description" content="Free, secure AI tool to redact PII (names, emails, phones, IBAN, SIRET) from documents. Protect your privacy before using ChatGPT, Claude, or Gemini. Supports French and English." />
|
| 13 |
+
<meta name="keywords" content="PII redaction, data sanitization, privacy tool, anonymize text, French PII, GDPR compliance, LLM security" />
|
| 14 |
+
<meta name="author" content="lbl" />
|
| 15 |
+
<meta name="robots" content="index, follow" />
|
| 16 |
|
| 17 |
<!-- Open Graph / Facebook -->
|
| 18 |
<meta property="og:type" content="website" />
|
ui/public/robots.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
User-agent: *
|
| 2 |
+
Allow: /
|
| 3 |
+
Sitemap: https://lbl-redaction.hf.space/sitemap.xml
|
ui/public/sitemap.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
| 3 |
+
<url>
|
| 4 |
+
<loc>https://lbl-redaction.hf.space/</loc>
|
| 5 |
+
<lastmod>2026-03-22</lastmod>
|
| 6 |
+
<changefreq>monthly</changefreq>
|
| 7 |
+
<priority>1.0</priority>
|
| 8 |
+
</url>
|
| 9 |
+
</urlset>
|