import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import { Swiper, SwiperSlide } from "swiper/react"; import { Navigation } from "swiper"; import styles from "@/components/Pages/Testimonials/TestimonialsTwo.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/user1.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/user2.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/user3.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/user4.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/user5.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/user6.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 TestimonialsTwo = () => { return ( <> Testimonials Two {Feedbacks.map((feedback) => (
Client

{feedback.name}

{feedback.designation}

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