import Link from 'next/link' import CalendarFillIcon from '@/components/icons/CalendarFillIcon' import HomeFillIcon from '@/components/icons/HomeFillIcon' import { CONSUMER_ROUTES } from '@/constants/routes' import { cn } from '@/lib/cn' import { texts } from '@/texts' interface ConsumerWizardStepperProps { currentStep: number className?: string } const STEPS = [ texts.events.wizardProgressStep1, texts.events.wizardProgressStep2, texts.events.wizardProgressStep3, texts.events.wizardProgressStep4, ] as const const ConsumerWizardStepper = ({ currentStep, className }: ConsumerWizardStepperProps) => { const progress = ((currentStep - 1) / (STEPS.length - 1)) * 75 return ( ) } export default ConsumerWizardStepper