'use client'; interface Step { label: string; isCompleted: boolean; isCurrent: boolean; } interface StepIndicatorProps { steps: Step[]; } export default function StepIndicator({ steps }: StepIndicatorProps) { return (