'use client'; import Link from 'next/link'; import { useAuth } from '@/hooks/useAuth'; export default function LandingNav() { const { authenticated } = useAuth(); const ctaHref = authenticated ? '/chat' : '/login'; const ctaLabel = authenticated ? 'Open chat' : 'Try samosaChaat'; return ( ); }