// 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 ( {/* Fold mark: C folded into bracket — references "CTRL" as control character */} ); }; // Section label — mono micro-caps with accent rule const SectionLabel = ({ n, label, color = '#38bdf8' }) => { const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" }; return (
{n} {label}
); }; // Big section header const SectionH = ({ children, align = 'left', maxWidth = 720 }) => (

{children}

); const SectionSub = ({ children, align = 'left', maxWidth = 640 }) => (

{children}

); Object.assign(window, { FoldMarkHP, SectionLabel, SectionH, SectionSub });