'use client'; import { AuthGuard } from '@/lib/gateways/AuthGuard'; import { ReactNode } from 'react'; interface OnboardingLayoutProps { children: ReactNode; } /** * Onboarding Layout * * Provides authentication protection for the onboarding flow. * Wraps children with AuthGuard to ensure only authenticated users can access. */ export default function OnboardingLayout({ children }: OnboardingLayoutProps) { return (
{children}
); }