"use client" import { cn } from "@/lib/utils" import { Check } from "lucide-react" import { useWizard } from "./wizard-context" const STEP_LABELS: Record = { 1: "Bane & tid", 2: "Spilleform", 3: "Spillere", 4: "Lag og rekkefølge", 5: "Deling", } export function ProgressSteps() { const { state, visibleSteps } = useWizard() const currentIdx = visibleSteps.indexOf(state.step) return ( ) }