type SectionBadgeProps = { title: string; }; export function SectionBadge(props: SectionBadgeProps) { const { title } = props; return ( {title} ); }