'use client'; import { useAuth } from '@/lib/auth-context'; export function Navigation() { const { user, logout, isAuthenticated } = useAuth(); return ( ); }