Bob AI: Move the heart icon to the right top corner of each testimon

This commit is contained in:
2026-02-17 15:26:13 +02:00
parent 1d70770633
commit 0bf636ffb9

View File

@@ -115,10 +115,12 @@ const TestimonialCard = memo(({
<Quote className="h-6 w-auto text-accent fill-accent" strokeWidth={1.5} />
)}
<p className={cls("relative z-1 text-lg leading-[1.2]", shouldUseLightText ? "text-background" : "text-foreground", testimonialClassName)}>
{testimonial.testimonial}
</p>
<Heart className="h-5 w-auto text-red-500" strokeWidth={1.5} />
<div className="relative">
<Heart className="absolute top-0 right-0 h-5 w-auto text-red-500" strokeWidth={1.5} />
<p className={cls("relative z-1 text-lg leading-[1.2]", shouldUseLightText ? "text-background" : "text-foreground", testimonialClassName)}>
{testimonial.testimonial}
</p>
</div>
</div>
<TestimonialAuthor