import { motion } from 'framer-motion' import AnimatedSection from './AnimatedSection' function TestimonialCard({ quote, author, delay }: any) { return (

"{quote}"

{author}
) } export default function CommunitySection() { const staggerContainer = { animate: { transition: { staggerChildren: 0.1 } } } return (
) }