'use client'; import Link from 'next/link'; import { ProtectedRoute, useAuth } from '@/lib/auth'; export default function AppLayoutClient({ children, }: { children: React.ReactNode; }) { const { signOut, user } = useAuth(); const handleSignOut = async () => { await signOut(); }; return (
{children}
); }