mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 07:18:47 +00:00
Update hero section with seed diagram
This commit is contained in:
@@ -49,9 +49,28 @@
|
|||||||
<!-- Intro Section -->
|
<!-- Intro Section -->
|
||||||
<section class="intro" id="intro" aria-labelledby="intro-heading">
|
<section class="intro" id="intro" aria-labelledby="intro-heading">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 id="intro-heading">SeedPass: Secure Password Manager</h1>
|
<h1 id="intro-heading">One Seed to Rule Them All</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>SeedPass deterministically derives every key and password from a single 12‑word phrase.</p>
|
||||||
<p>By integrating with the <strong>Nostr network</strong>, 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.</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>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@@ -337,6 +337,13 @@ footer .social-media a:focus {
|
|||||||
transform: translateY(-3px);
|
transform: translateY(-3px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Mini flow chart in hero */
|
||||||
|
.mini-chart {
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 40px auto;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
/* Features Section */
|
/* Features Section */
|
||||||
.features {
|
.features {
|
||||||
background-color: var(--background-section);
|
background-color: var(--background-section);
|
||||||
|
Reference in New Issue
Block a user