import { Step } from '@/lib/types' export function StepCard({ step, index }: { step: Step; index: number }) { return (
{index + 1}

{step.title}

{step.description}

) }