From 8a5be2cde913c98a145c9ae5ba322593216e8af5 Mon Sep 17 00:00:00 2001 From: At0micTurtle Date: Tue, 23 Jan 2024 10:57:10 -0500 Subject: [PATCH] Refactor code in Feedbacks.jsx --- src/components/Feedbacks.jsx | 42 ++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/src/components/Feedbacks.jsx b/src/components/Feedbacks.jsx index 89c5106..332167b 100644 --- a/src/components/Feedbacks.jsx +++ b/src/components/Feedbacks.jsx @@ -1,11 +1,11 @@ /* eslint-disable react-refresh/only-export-components */ /* eslint-disable react/no-unescaped-entities */ /* eslint-disable react/prop-types */ -import { motion } from "framer-motion"; -import { styles } from "../styles"; -import { SectionWrapper } from "../hoc"; -import { fadeIn, textVariant } from "../utils/motion"; -import { testimonials } from "../constants"; +import { motion } from 'framer-motion'; +import { styles } from '../styles'; +import { SectionWrapper } from '../hoc'; +import { fadeIn, textVariant } from '../utils/motion'; +import { testimonials } from '../constants'; const FeedbackCard = ({ index, @@ -16,22 +16,22 @@ const FeedbackCard = ({ image, }) => ( -

"

+

"

-
-

{testimonial}

+
+

{testimonial}

-
-
-

- @ {name} +

+
+

+ @ {name}

-

+

{designation} chez {company}

@@ -39,7 +39,7 @@ const FeedbackCard = ({ {`feedback_by-${name}`}
@@ -54,8 +54,8 @@ const Feedbacks = () => { >

Ce que les autres disent

Témoignages.

@@ -72,4 +72,4 @@ const Feedbacks = () => { ); }; -export default SectionWrapper(Feedbacks, ""); +export default SectionWrapper(Feedbacks, '');