import React from "react"; const TestimonialCard = ({ avatar, name, title, review }) => (
{[...Array(5)].map((_, i) => ( ))}

{review}

{name}

{name}

{title}

); const Testimonials = () => { const testimonials = [ { avatar: "https://plus.unsplash.com/premium_photo-1690407617686-d449aa2aad3c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", name: "Dr. Sarah Thompson", title: "Cardiologist", review: "Mediscape has revolutionized the way I interact with patient data. The handwriting analysis feature alone has saved me countless hours and improved my accuracy in patient record management.", }, { avatar: "https://plus.unsplash.com/premium_photo-1661745702156-cd4b0382455f?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", name: "Dr. John Lee", title: "General Practitioner", review: "The AI-powered disease detection system in Mediscape has become an invaluable tool in my practice. It provides me with accurate insights quickly, allowing me to focus more on patient care", }, { avatar: "https://images.unsplash.com/photo-1616776005756-4dca36124bf9?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", name: "Dr. Emily Grant", title: "General Physician", review: "I can't imagine going back to my old methods after using Mediscape. The symptom analysis feature has enhanced my diagnostic capabilities and improved my patient outcomes", }, ]; return (
Testimonials
Check all 2,157 reviews
{testimonials.map((testimonial, index) => ( ))}
); }; export default Testimonials;