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