"use client"; import { FormProvider, useFormContext } from "@/components/offerte/form-context"; import { StepProduct } from "@/components/offerte/step-product"; import { StepDimensions } from "@/components/offerte/step-dimensions"; import { StepOptions } from "@/components/offerte/step-options"; import { StepContact } from "@/components/offerte/step-contact"; import { StepSummary } from "@/components/offerte/step-summary"; import { Button } from "@/components/ui/button"; import { ChevronLeft, ChevronRight } from "lucide-react"; const stepLabels = ["Product", "Afmetingen", "Opties", "Contact", "Overzicht"]; const stepComponents = [ StepProduct, StepDimensions, StepOptions, StepContact, StepSummary, ]; function StepIndicator() { const { currentStep, totalSteps } = useFormContext(); return (
Configureer uw product in een paar stappen.