"use client" import { cn } from "@/lib/utils" import { useMobile } from "@/hooks/use-mobile" interface Step { number: number title: string } interface StepIndicatorProps { currentStep: number steps: Step[] } export function StepIndicator({ currentStep, steps }: StepIndicatorProps) { const isMobile = useMobile() return (