'use client' import React from "react"; import { Star } from "lucide-react"; import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, } from "@/components/ui/carousel"; import { Card, CardContent } from "@/components/ui/card"; import { testimonials } from "@/utils"; import Image from "next/image"; import { motion } from "framer-motion"; const TestimonialCard = ({ testimonial }) => (
{[...Array(5)].map((_, i) => ( ))}
{testimonial.daysAgo} days ago

"{testimonial.review}"

{testimonial.name}

{testimonial.name}

{testimonial.location || "Verified Customer"}

); const TestimonialCarousel = () => { return (

Transformative Experiences with Gupta Rudraksha

Discover how our sacred beads have touched lives - See All Testimonials

{testimonials.map((testimonial, index) => (
))}
); }; export default TestimonialCarousel;