Harden onion boot flow and deepen site surfaces

Add persistent onion key backup and restore, improve startup resilience, and flesh out the major site verticals with richer navigation, search coverage, and operator documentation.

Made-with: Cursor
This commit is contained in:
drjones
2026-04-07 21:35:52 -07:00
parent 52432dccfa
commit 78a071ba02
162 changed files with 21692 additions and 39 deletions

View File

@@ -0,0 +1,21 @@
import Link from "next/link";
/** Call-to-action back to the main storefront (same deployment). */
export function HubStrip({ slug }: { slug: string }) {
return (
<div className="mb-8 border-2 border-current bg-black/30 px-4 py-3 text-xs md:text-sm">
<span className="opacity-80">RELAY /{slug}</span>
<span className="mx-2 opacity-40">|</span>
<Link href="/" className="font-bold underline decoration-2 underline-offset-4 hover:opacity-80">
Primary CyberLux storefront
</Link>
<span className="mx-2 opacity-40">·</span>
<Link href="/checkout" className="underline opacity-90 hover:opacity-100">
Checkout
</Link>
<p className="mt-2 text-[10px] opacity-60">
Verify this .onion against the signed mirror list on the hub before signing anything. Unsigned relay = untrusted relay.
</p>
</div>
);
}