"use client"; import { motion, AnimatePresence } from "framer-motion"; import React, { useState, useEffect } from "react"; /** * Shahi Kitchen Hero - Focused on the Chef Logo * - Large central logo with life (wink + smile cycle) * - Cream background circle so the logo blends/absorbs into the site color * - No more small floating dishes */ export default function PlayfulHeroScene() { const [expression, setExpression] = useState<'normal' | 'wink' | 'smile'>('normal'); // Cycle expressions for life (wink and smile) useEffect(() => { const interval = setInterval(() => { setExpression(prev => { const rand = Math.random(); if (rand < 0.45) return 'wink'; if (rand < 0.9) return 'smile'; return 'normal'; }); }, 2400); return () => clearInterval(interval); }, []); const getLogoSrc = () => { if (expression === 'wink') return '/images/animation/chef-wink.jpg'; if (expression === 'smile') return '/images/animation/chef-smile.jpg'; return '/images/animation/chef-normal.jpg'; }; return (