import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import { Swiper, SwiperSlide } from "swiper/react"; import { Pagination } from "swiper"; import styles from "@/components/Pages/Testimonials/TestimonialsThree.module.css"; const Feedbacks = [ { id: 1, feedbackText: "We look and sound so good! I am still in shock at how smooth this process was. The professionalism, collaboration and the design they come up is great.", image: "/images/member1.png", name: "Roberto", designation: 'React Developer', ratings: [ { id: 1, icon: "ri-star-fill", }, { id: 2, icon: "ri-star-fill", }, { id: 3, icon: "ri-star-fill", }, { id: 4, icon: "ri-star-fill", }, { id: 5, icon: "ri-star-fill", } ] }, { id: 2, feedbackText: "We look and sound so good! I am still in shock at how smooth this process was. The professionalism, collaboration and the design they come up is great.", image: "/images/member2.png", name: "Ramon", designation: 'UI/UX Designer', ratings: [ { id: 1, icon: "ri-star-fill", }, { id: 2, icon: "ri-star-fill", }, { id: 3, icon: "ri-star-fill", }, { id: 4, icon: "ri-star-fill", }, { id: 5, icon: "ri-star-fill", } ] }, { id: 3, feedbackText: "We look and sound so good! I am still in shock at how smooth this process was. The professionalism, collaboration and the design they come up is great.", image: "/images/member3.png", name: "Nathaniel", designation: 'Angular Developer', ratings: [ { id: 1, icon: "ri-star-fill", }, { id: 2, icon: "ri-star-fill", }, { id: 3, icon: "ri-star-fill", }, { id: 4, icon: "ri-star-fill", }, { id: 5, icon: "ri-star-fill", } ] }, { id: 4, feedbackText: "We look and sound so good! I am still in shock at how smooth this process was. The professionalism, collaboration and the design they come up is great.", image: "/images/member4.png", name: "Milton", designation: 'React Developer', ratings: [ { id: 1, icon: "ri-star-fill", }, { id: 2, icon: "ri-star-fill", }, { id: 3, icon: "ri-star-fill", }, { id: 4, icon: "ri-star-fill", }, { id: 5, icon: "ri-star-fill", } ] }, { id: 5, feedbackText: "We look and sound so good! I am still in shock at how smooth this process was. The professionalism, collaboration and the design they come up is great.", image: "/images/member5.png", name: "Antonio", designation: 'React Developer', ratings: [ { id: 1, icon: "ri-star-fill", }, { id: 2, icon: "ri-star-fill", }, { id: 3, icon: "ri-star-fill", }, { id: 4, icon: "ri-star-fill", }, { id: 5, icon: "ri-star-fill", } ] }, { id: 6, feedbackText: "We look and sound so good! I am still in shock at how smooth this process was. The professionalism, collaboration and the design they come up is great.", image: "/images/member6.png", name: "Julian", designation: 'React Developer', ratings: [ { id: 1, icon: "ri-star-fill", }, { id: 2, icon: "ri-star-fill", }, { id: 3, icon: "ri-star-fill", }, { id: 4, icon: "ri-star-fill", }, { id: 5, icon: "ri-star-fill", } ] }, ] const TestimonialsThree = () => { return ( <> Testimonials Three {Feedbacks.map((feedback) => (
Client

{feedback.name}

{feedback.designation}

    {feedback.ratings.map((rating) => (
  • ))}
{feedback.feedbackText}
))}
); }; export default TestimonialsThree;