"use client" import { useOnboarding } from "./onboarding-context" interface OnboardingBackgroundProps { children: React.ReactNode } export function OnboardingBackground({ children }: OnboardingBackgroundProps) { const { currentStep, visibleSteps } = useOnboarding() const backgroundImage = "url(/onboarding.png)" const currentZoomStepIndex = visibleSteps.indexOf(currentStep) const zoomScale = currentZoomStepIndex >= 0 ? 1.0 + currentZoomStepIndex * 0.1 : 1.0 return (
{children}
) }