// Card primitives — dark and light variants
function CardDark({ eyebrow, title, children, hero = false, style = {} }) {
return (
{eyebrow ?
{eyebrow} : null}
{title ?
{title}
: null}
{children}
);
}
function CardLight({ eyebrow, title, children, hero = false, style = {} }) {
return (
{eyebrow ?
{eyebrow}
: null}
{title ?
{title}
: null}
{children}
);
}
// Service / offering row — dark mode
function OfferingRow({ num, title, body, tag }) {
return (
{num}
{tag ? {tag} : null}
);
}
window.CardDark = CardDark;
window.CardLight = CardLight;
window.OfferingRow = OfferingRow;