/** 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 (

{label}

{tags.map((t) => ( {t} ))}
); }