From 1eed8604036983927e18e345f4bd99d4faa0c632 Mon Sep 17 00:00:00 2001 From: mces58 Date: Thu, 8 Aug 2024 20:01:07 +0300 Subject: [PATCH] chore: wrap Feedbacks component with SectionWrapper --- v2/src/components/Feedbacks.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/v2/src/components/Feedbacks.jsx b/v2/src/components/Feedbacks.jsx index 617405e..ecbf005 100644 --- a/v2/src/components/Feedbacks.jsx +++ b/v2/src/components/Feedbacks.jsx @@ -2,6 +2,7 @@ import { motion } from 'framer-motion'; import FeedbackCard from '@/components/FeedbackCard'; import { testimonials } from '@/constants'; +import SectionWrapper from '@/hoc/SectionWrapper'; import { styles } from '@/styles'; import { textVariant } from '@/utils/motion'; @@ -23,4 +24,6 @@ const Feedbacks = () => { ); }; -export default Feedbacks; +const WrappedFeedbacks = SectionWrapper(Feedbacks, ''); + +export default WrappedFeedbacks;