// Shared.jsx — section primitives function Section({ id, children, warm, style }) { return (
{children}
); } function SectionHead({ eyebrow, title, align = 'center' }) { return (
{eyebrow &&
{eyebrow}
}

{title}

); } function Divider({ width = 200 }) { return (
); } Object.assign(window, { Section, SectionHead, Divider });