export const CenteredHero = (props: { banner: React.ReactNode; title: React.ReactNode; description: string; buttons: React.ReactNode; }) => ( <>
{props.banner}
{props.title}
{props.description}
{props.buttons}
);