Files
dark-lord/components/site/LexiconStrip.tsx
drjones 78a071ba02 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
2026-04-07 21:35:52 -07:00

27 lines
757 B
TypeScript

/** 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>
);
}