+ {testimonial.author.role && (
+ {testimonial.author.role}
+ )}
+ {testimonial.author.role && testimonial.author.company && (
+ ,
+ )}
+ {testimonial.author.company && (
+ {testimonial.author.company}
+ )}
+
+ )}
+ {testimonial.author.location && (
+
+
+
+ {testimonial.verified && (
+
+
+ Verified
+
+ )}
+
+
"{testimonial.title}"
+
{testimonial.content}
+
+ {testimonial.author.name}
+ {(testimonial.author.role || testimonial.author.company) && (
+
+ {[testimonial.author.role, testimonial.author.company].filter(Boolean).join(', ')}
+
+ )}
+ {testimonial.author.location && (
+ {testimonial.author.location}
+ )}
+
+
+ );
+}
+
+export const TestimonialsCarousel: React.FC