diff --git a/src/components/home/partners/SecondaryPartners.jsx b/src/components/home/partners/SecondaryPartners.jsx index 5770b39..12b28c1 100644 --- a/src/components/home/partners/SecondaryPartners.jsx +++ b/src/components/home/partners/SecondaryPartners.jsx @@ -28,8 +28,7 @@ const partnerGridStyle = { display: 'flex', justifyContent: 'center', alignItems: 'center', - flexDirection: 'column', - pt: '20px' + flexDirection: 'column' }; const LargeScreenComponent = ({ @@ -56,39 +55,49 @@ const LargeScreenComponent = ({ borderRadius: '30px', minHeight: '450px', marginBottom: '100px', - flexDirection: 'row' + flexDirection: 'row', + pt: '5%' }} key={company} > - + - - + + {testimonial} - - {testimonialAuthor} - - {testimonialTwo ? ( - + {testimonialAuthor && ( + + {testimonialAuthor} + + )} + {testimonialTwo && ( + {testimonialTwo} - ) : null} - {testimonialAuthorTwo ? ( + )} + {testimonialAuthorTwo && ( {testimonialAuthorTwo} - ) : null} + )} );