Components
Testimonials

Testimonials

The Testimonials component provides you with customer testimonials and reviews.

Live Examples

Live Example
View Code
import { Testimonials } from '@nostromo/ui-marketing'

export default function TestimonialsExample() {
  return (
    <Testimonials
      title="What Our Customers Say"
      testimonials={[
        {
          content: "Nostromo UI has transformed our development workflow. The components are beautiful and easy to use.",
          author: "Sarah Johnson",
          role: "Frontend Developer",
          company: "TechCorp"
        },
        {
          content: "The accessibility features are outstanding. Our users love the improved experience.",
          author: "Mike Chen",
          role: "Product Manager",
          company: "StartupXYZ"
        }
      ]}
      variant="grid"
    />
  )
}

Code Examples

Props

PropTypeDefaultDescription
titlestring-Section title
testimonialsTestimonial[]-Array of testimonials
variant"grid" | "carousel""grid"Display variant
columnsnumber3Number of columns (grid)
autoplaybooleantrueAuto-play (carousel)