"use client"; import { motion } from "framer-motion"; import { Star, Check } from "lucide-react"; const testimonials = [ { id: 1, name: "Sarah M.", skinType: "Dry, sensitive skin", text: "I've tried countless oils over the years, but ManoonOils is different. My skin has never felt this nourished and healthy. The argan oil is now a staple in my routine.", verified: true, }, { id: 2, name: "James K.", skinType: "Hair care enthusiast", text: "Finally found an oil that actually tames my frizz without making my hair greasy. The jojoba oil works wonders for my beard too. Highly recommend!", verified: true, }, { id: 3, name: "Emma L.", skinType: "Combination skin", text: "Was skeptical at first but after 3 weeks of using the rosehip oil, my skin texture has improved dramatically. The quality is unmatched.", verified: true, }, ]; export default function TestimonialsSection() { return (
{/* Header */} Testimonials

What our customers say

{/* Testimonials Grid */}
{testimonials.map((testimonial, index) => ( {/* Stars */}
{[...Array(5)].map((_, i) => ( ))}
{/* Quote */}

“{testimonial.text}”

{/* Author */}

{testimonial.name}

{testimonial.skinType}

{testimonial.verified && (
Verified purchase
)}
))}
); }