// Shared primitives for the bold homepage: Fold mark, shared styles, section // label component. All bold-homepage files depend on this loading first. const FoldMarkHP = ({ size = 36, mono = false, dark = true }) => { const flat = mono ? (dark ? '#fff' : '#0b1220') : null; const id = `fmhp-${Math.random().toString(36).slice(2, 7)}`; return ( ); }; // Section label — mono micro-caps with accent rule const SectionLabel = ({ n, label, color = '#38bdf8' }) => { const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" }; return (
{children}
); Object.assign(window, { FoldMarkHP, SectionLabel, SectionH, SectionSub });