"use client" import { cn } from "@/app/lib/utils" interface StepIndicatorProps { steps: { id: number; title: string; subtitle?: string }[] currentStep: number className?: string } export function StepIndicator({ steps, currentStep, className }: StepIndicatorProps) { return (