Skip to content

Commit 39d46a7

Browse files
committed
Fix Testimonial Card Alignment
1 parent 1053b4b commit 39d46a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Testimonials.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ReviewCard = ({
2626
}) => {
2727
return (
2828
<motion.div
29-
className="bg-white dark:bg-gray-900 rounded-xl p-6 flex flex-col items-center text-center min-h-[250px] h-auto w-[350px] shadow-lg border border-gray-200 dark:border-gray-700 mx-2"
29+
className="bg-white dark:bg-gray-900 rounded-xl p-6 flex flex-col items-center text-center min-h-[250px] h-auto w-[350px] shadow-lg border border-gray-200 dark:border-gray-700 mx-2 justify-between"
3030
variants={testimonialCard}
3131
initial="hidden"
3232
whileInView="visible"
@@ -51,7 +51,7 @@ const ReviewCard = ({
5151
</motion.p>
5252

5353
{/* User Info */}
54-
<div className="flex items-center mt-4 space-x-3">
54+
<div className="flex items-center mt-4 space-x-3 text-left">
5555
<motion.img
5656
src={img}
5757
alt={name}

0 commit comments

Comments
 (0)