export function IamSectionCard(props: { title: string; description?: string; children: React.ReactNode; }) { return (

{props.title}

{props.description ? (

{props.description}

) : null}
{props.children}
); }