export function SectionHeader({ title, note }: { title: string; note?: string }) { return (

{title}

{note ? {note} : null}
); }