import { LandingRating } from '@/components/landing/rating/LandingRating'; import { LandingAvatar } from '@/components/landing/social-proof/LandingAvatar'; import { clsx } from 'clsx'; /** * Use this component to display a single testimonial inline. Use this to highlight short customer testimonials or reviews. are meant as short validation and are usually support for a primary or secondary Call to action. * * Can be used with the `LandingTestimonialInline` component. */ export const LandingTestimonialInlineItem = ({ className, imageSrc, text, name, suffix, }: { className?: string; imageSrc?: string; text: string; name: string; suffix?: string; }) => { return (
"{text}"
) : null}{name} {suffix ? <>, {suffix}> : null}