import React from "react"; import { motion } from "framer-motion"; import { SectionWrapper } from "src/hoc"; import { fadeIn, textVariant } from "src/utils/motion"; import { styles } from "src/style"; import { testimonials } from "src/constans"; const FeedbackCard = ({ index, testimonial, title }) => (

{title}

{testimonial}

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

Platform Description.

{testimonials.map((testimonial, index) => ( ))}
); }; export default SectionWrapper(Feedbacks, "platform");