import { motion } from 'framer-motion' const container = { hidden: { opacity: 0 }, show: { opacity: 1, transition: { staggerChildren: 0.07, delayChildren: 0.1 } }, } const chip = { hidden: { opacity: 0, x: -12 }, show: { opacity: 1, x: 0, transition: { type: 'spring', stiffness: 300, damping: 28 } }, } export default function SuggestedQuestions({ questions, onAsk }) { if (!questions || questions.length === 0) return null return (