import { useT } from '../lib/i18n/I18nContext'; interface ProgressIndicatorProps { currentStep: number; totalSteps: number; } const ProgressIndicator = ({ currentStep, totalSteps }: ProgressIndicatorProps) => { const { t } = useT(); return (