"use client"; import { Suspense } from "react"; import { useConfiguratorStore } from "@/lib/store"; import { Scene3D } from "./scene"; function LoadingFallback() { return (

3D Scene laden...

); } export function DoorVisualizer() { const { doorType, gridType, finish, handle } = useConfiguratorStore(); return (
{/* Live Preview Badge */}
3D Voorbeeld
{/* 3D Scene */} }> {/* Configuration Info Card */}
Type
{doorType}
Verdeling
{gridType}
Afwerking
{finish}
Greep
{handle}
{/* Controls Hint */}

🖱️ Drag to rotate • Scroll to zoom

); }