'use client'; import Link from 'next/link'; import { motion } from 'framer-motion'; import { useAuth } from '@/hooks/useAuth'; import SamosaSvg from '@/components/svg/SamosaSvg'; import KettleSvg from '@/components/svg/KettleSvg'; import KettleSteam from '@/components/svg/KettleSteam'; import ToranSvg from '@/components/svg/ToranSvg'; export default function Hero() { const { authenticated } = useAuth(); const ctaHref = authenticated ? '/chat' : '/login'; return (
{/* Soft saffron glow background */}
{/* Toran swing on top center */}
{/* Eyebrow pill */} A small, hand-cooked AI · made in India {/* Hindi script — playful crown */} समोसा चाट {/* Big serif English headline */} A chatbot with a dash of masala. A tiny, full-stack AI cooked from scratch — trained, served and shipped from one tiny kitchen. Conversational, a little playful, very desi. {/* CTAs */} Start chatting See the recipe {/* Caveat caption */} your AI, with a dash of masala {/* Floating illustrations */}
Samosa
Chai
); }