Update hero section with seed diagram

This commit is contained in:
thePR0M3TH3AN
2025-07-06 15:43:58 -04:00
parent 9d2b374c37
commit cc1b5f12a1
2 changed files with 29 additions and 3 deletions

View File

@@ -49,9 +49,28 @@
<!-- Intro Section -->
<section class="intro" id="intro" aria-labelledby="intro-heading">
<div class="container">
<h1 id="intro-heading">SeedPass: Secure Password Manager</h1>
<p><strong>SeedPass</strong> 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.</p>
<p>By integrating with the <strong>Nostr network</strong>, SeedPass compresses your encrypted vault and publishes it in 50&#8201;KB chunks. Each chunk is sent as a parameterised replaceable event, with deltas tracking changes between snapshots and automatic rotation when deltas grow large.</p>
<h1 id="intro-heading">One Seed to Rule Them All</h1>
<p>SeedPass deterministically derives every key and password from a single 12word phrase.</p>
<pre class="mermaid mini-chart">
---
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;
</pre>
<a href="https://github.com/PR0M3TH3AN/SeedPass" class="btn-primary cta-button"><i class="fas fa-download" aria-hidden="true"></i> Get Started</a>
</div>
</section>

View File

@@ -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);