interface OutlineSectionProps { number: number; title: string; bullets: string[]; } export function OutlineSection({ number, title, bullets }: OutlineSectionProps) { return (

{number}. {title}

); }