Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

Commit b48bc5c

Browse files
committed
V3.5 website overhaul: crypto page, quantum threats, 404 revamp, FAQ, table fix
- New cryptography.astro: 9 comparison sections (AES vs RSA, ChaCha20, X25519, ML-KEM, Ed25519, Double Ratchet, SPQR, HKDF, Quantum Threats) - Quantum section: Shor, Grover, HNDL, side-channel, resistance matrix, PQ roadmap - index.astro: V3.5 update, SPQR/ChaCha20 cards, comparison table fix (4 rows), SPQR+ChaCha20 FAQ - 404.astro: dramatic 3D (800 particles, shattered lock, matrix rain, error logs) - how-it-works.astro: SPQR Step 2, ChaCha20 Step 3, dual cipher Step 5 - All pages: simplified navbar, fixed Unicode superscripts (sup tags) - Layout.astro: updated meta/SEO
1 parent 5d84300 commit b48bc5c

5 files changed

Lines changed: 1727 additions & 110 deletions

File tree

src/layouts/Layout.astro

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ const siteUrl = 'https://devbot667.github.io/SecureChat-Website';
1414
<head>
1515
<meta charset="UTF-8" />
1616
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
17-
<meta name="description" content="SecureChat — La messagerie chiffrée post-quantique de bout en bout. PQXDH (X25519 + ML-KEM-768), Double Ratchet, AES-256-GCM, Tor intégré, zéro métadonnée." />
17+
<meta name="description" content="SecureChat — La messagerie chiffrée post-quantique de bout en bout. PQXDH (X25519 + ML-KEM-1024), Double Ratchet, AES-256-GCM, Tor intégré, zéro métadonnée." />
1818
<meta name="theme-color" content="#7B2D8E" />
1919
<meta name="author" content="DevBot667" />
20-
<meta name="keywords" content="SecureChat, encrypted messaging, E2E encryption, Tor, Double Ratchet, X25519, PQXDH, ML-KEM-768, post-quantum, privacy, anonymous chat, zero metadata, AES-256-GCM, Ed25519, StrongBox" />
20+
<meta name="keywords" content="SecureChat, encrypted messaging, E2E encryption, Tor, Double Ratchet, X25519, PQXDH, ML-KEM-1024, post-quantum, privacy, anonymous chat, zero metadata, AES-256-GCM, Ed25519, StrongBox" />
2121

2222
<!-- Open Graph -->
2323
<meta property="og:title" content={title} />
24-
<meta property="og:description" content="Post-quantum E2E encrypted messenger. PQXDH (X25519 + ML-KEM-768), Double Ratchet, AES-256-GCM, Tor integration, zero metadata." />
24+
<meta property="og:description" content="Post-quantum E2E encrypted messenger. PQXDH (X25519 + ML-KEM-1024), Double Ratchet, AES-256-GCM, Tor integration, zero metadata." />
2525
<meta property="og:type" content="website" />
2626
<meta property="og:url" content={siteUrl} />
2727
<meta property="og:image" content={`${siteUrl}/og-image.png`} />
@@ -34,7 +34,7 @@ const siteUrl = 'https://devbot667.github.io/SecureChat-Website';
3434
<!-- Twitter Card -->
3535
<meta name="twitter:card" content="summary_large_image" />
3636
<meta name="twitter:title" content={title} />
37-
<meta name="twitter:description" content="Post-quantum E2E encrypted messenger. PQXDH (X25519 + ML-KEM-768), Double Ratchet, AES-256-GCM, Tor integration, zero metadata." />
37+
<meta name="twitter:description" content="Post-quantum E2E encrypted messenger. PQXDH (X25519 + ML-KEM-1024), Double Ratchet, AES-256-GCM, Tor integration, zero metadata." />
3838
<meta name="twitter:image" content={`${siteUrl}/og-image.png`} />
3939

4040
<!-- Favicons -->
@@ -56,7 +56,7 @@ const siteUrl = 'https://devbot667.github.io/SecureChat-Website';
5656
"name": "SecureChat",
5757
"applicationCategory": "CommunicationApplication",
5858
"operatingSystem": "Android",
59-
"description": "Post-quantum end-to-end encrypted messenger with PQXDH (X25519 + ML-KEM-768), Double Ratchet, AES-256-GCM, Tor integration, and zero metadata collection.",
59+
"description": "Post-quantum end-to-end encrypted messenger with PQXDH (X25519 + ML-KEM-1024), Double Ratchet, AES-256-GCM, Tor integration, and zero metadata collection.",
6060
"url": siteUrl,
6161
"author": {
6262
"@type": "Person",
@@ -70,7 +70,7 @@ const siteUrl = 'https://devbot667.github.io/SecureChat-Website';
7070
"priceCurrency": "USD"
7171
},
7272
"featureList": [
73-
"Post-quantum key exchange PQXDH (X25519 + ML-KEM-768)",
73+
"Post-quantum key exchange PQXDH (X25519 + ML-KEM-1024)",
7474
"End-to-end encryption (AES-256-GCM)",
7575
"Double Ratchet protocol with PFS & self-healing",
7676
"Ed25519 message signatures",

0 commit comments

Comments
 (0)