'use client'; import Link from 'next/link'; import { motion } from 'framer-motion'; import { useAuth } from '@/hooks/useAuth'; export default function Hero() { const { authenticated } = useAuth(); const ctaHref = authenticated ? '/chat' : '/login'; return (
समोसा चाट samosaChaat A warm, desi-flavored chat — brewed from the nanochat research model, served with a side of chai. Start Chatting
); }