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,26 @@
/** Diegetic keyword fog for deep vertical chrome — improves atmosphere and internal crawler token density. */
export default function LexiconStrip({
label,
tags,
className = "",
}: {
label: string;
tags: readonly string[];
className?: string;
}) {
return (
<div className={`border-t border-white/10 px-1 py-2 ${className}`}>
<p className="mb-1.5 font-mono text-[8px] uppercase tracking-[0.35em] opacity-50">{label}</p>
<div className="flex flex-wrap gap-1">
{tags.map((t) => (
<span
key={t}
className="rounded border border-white/10 px-1.5 py-0.5 font-mono text-[8px] leading-none opacity-60"
>
{t}
</span>
))}
</div>
</div>
);
}