2 Commits

Author SHA1 Message Date
c91da9f81e Bob AI: Combine first and last name into a single name field in the 2026-02-27 10:10:58 +00:00
5ec6f0830a Merge version_7 into main
Merge version_7 into main
2026-02-27 10:07:33 +00:00

View File

@@ -48,9 +48,9 @@ const TestimonialCardFlip = memo(({ testimonial, className }: { testimonial: Tes
className="w-24 h-24 rounded-full object-cover mb-4 border-4 border-white dark:border-slate-700 shadow-lg"
/>
)}
<h3 className="text-lg font-semibold text-slate-900 dark:text-white text-center">
{testimonial.name}
</h3>
<h3 className="text-lg font-semibold text-slate-900 dark:text-white text-center">
{testimonial.firstName} {testimonial.lastName}
</h3>
<p className="text-sm text-slate-600 dark:text-slate-400 text-center mt-1">
{testimonial.role}
</p>