diff --git a/landing/index.html b/landing/index.html index bd90bab..90c4649 100644 --- a/landing/index.html +++ b/landing/index.html @@ -49,9 +49,28 @@
-

SeedPass: Secure Password Manager

-

SeedPass is a secure password generator and manager built on Bitcoin's BIP-85 standard. It uses deterministic key derivation to generate passwords that are never stored but can be easily regenerated when needed.

-

By integrating with the Nostr network, SeedPass compresses your encrypted vault and publishes it in 50 KB chunks. Each chunk is sent as a parameterised replaceable event, with deltas tracking changes between snapshots and automatic rotation when deltas grow large.

+

One Seed to Rule Them All

+

SeedPass deterministically derives every key and password from a single 12‑word phrase.

+
+---
+config:
+  theme: base
+  themeVariables:
+    primaryColor: '#e94a39'
+    primaryBorderColor: '#e94a39'
+    lineColor: '#e94a39'
+  look: classic
+---
+flowchart TB
+    seed["alpha bravo charlie delta echo foxtrot golf hotel india juliet kilo lima"]
+    seed --> pw["πŸ”‘ Passwords"]
+    seed --> totp["πŸ“± 2FA Codes"]
+    seed --> ssh["πŸ–§ SSH Keys"]
+    seed --> pgp["πŸ”’ PGP Key"]
+    seed --> mn["🌱 Seed Phrase"]
+    seed --> nostr["⚑ Nostr Keys"]
+    classDef default fill:#ffffff,stroke:#e94a39,stroke-width:2px,color:#283c4f;
+                    
Get Started
diff --git a/landing/style.css b/landing/style.css index 5675cc9..7061f5b 100644 --- a/landing/style.css +++ b/landing/style.css @@ -337,6 +337,13 @@ footer .social-media a:focus { transform: translateY(-3px); } +/* Mini flow chart in hero */ +.mini-chart { + max-width: 600px; + margin: 40px auto; + background-color: transparent; +} + /* Features Section */ .features { background-color: var(--background-section);