interface ProcessStep { num: string; title: string; desc: string; } interface ProcessSectionProps { title: string; steps: ProcessStep[]; } export default function ProcessSection({ title, steps }: ProcessSectionProps) { return (
{title}
{steps.map((step, index) => (
{step.num}

{step.title}

{step.desc}

))}
); }