import { clsx } from 'clsx'; /** * A component meant to be used in the landing page. * It displays a grid of short testimonials. * * Use this to highlight short customer testimonials or reviews. These are not meant for reviews, but short validation and are usually support for a primary or secondary Call to action. */ export const LandingTestimonialInline = ({ className, children, withBackground = false, variant = 'primary', containerType = 'ultrawide', }: { className?: string; children?: React.ReactNode; withBackground?: boolean; variant?: 'primary' | 'secondary'; containerType?: 'narrow' | 'wide' | 'ultrawide'; }) => { return (
{children}
); };