import { QUESTION_STEPS, TOTAL_QUESTIONS, type SurveyStep } from '@/lib/survey/types'; interface Props { step: SurveyStep; } /** * 상단 진행률 바. * intro/thanks에서는 렌더링 안 됨 (질문 step 만 표시). */ export default function ProgressBar({ step }: Props) { const idx = QUESTION_STEPS.indexOf(step as 'q1'); if (idx < 0) return null; const current = idx + 1; const percent = (current / TOTAL_QUESTIONS) * 100; return (