import type { ReactNode } from 'react'; type SectionHeaderProps = { badge: ReactNode; title: string; description?: string; }; export function SectionHeader({ badge, title, description }: SectionHeaderProps) { return (
{description}