import { Testimonial } from "@/components/community/testimonial"; export function TestimonialsSection() { const testimonials = [ { quote: "Fadia's approach to Pilates has completely transformed my relationship with my body. The community she's built is supportive and encouraging.", author: "Sarah H.", memberSince: "2021", initials: "SH", color: "teal", }, { quote: "I've seen incredible improvements in my posture and core strength since joining Fadia's classes. She truly understands how to help each individual.", author: "Ahmed M.", memberSince: "2022", initials: "AM", color: "purple", }, { quote: "The mindful approach to movement has helped my chronic back pain tremendously. I look forward to every class!", author: "Laila K.", memberSince: "2023", initials: "LK", color: "rose", } ]; return (
{testimonials.map((testimonial, index) => (
))}
); }