/* global React */
// Marketing-site primitives — pared back. No icon-tile chrome, no badges.
function Container({ children, narrow }) {
return
{children}
;
}
function Section({ children, dark, id }) {
return ;
}
function SectionIdx({ n, name, meta }) {
return (
[{n}]
— {name}
{meta}
);
}
function Button({ variant = 'primary', size = 'md', arrow, children, onClick, type, style, disabled }) {
return (
);
}
Object.assign(window, { Button, Container, Section, SectionIdx });