/** * Landing Section: Testimonials * * 3-column grid of testimonial cards. */ import { motion } from 'framer-motion' import { Star } from 'lucide-react' import { StaggerContainer, staggerChild, GlassCard, SectionHeading } from '../primitives' const TESTIMONIALS = [ { quote: 'This completely changed how I work. Everything is faster and more organized now.', name: 'Alex Johnson', role: 'Product Manager', rating: 5, }, { quote: 'The simplicity is what sold me. I was up and running in minutes, not hours.', name: 'Sarah Chen', role: 'Designer', rating: 5, }, { quote: 'Finally an app that works the way I think. The flexibility is incredible.', name: 'Marcus Williams', role: 'Developer', rating: 5, }, ] export default function TestimonialsSection() { return (
{TESTIMONIALS.map(t => (
{Array.from({ length: t.rating }).map((_, i) => ( ))}

“{t.quote}”

{t.name.split(' ').map(n => n[0]).join('')}
{t.name}
{t.role}
))}
) }