1 Commits

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