Sign In

Testimonials

A display-only field for showcasing customer testimonials with names, roles, avatars, and star ratings.

The Testimonials field displays a collection of customer quotes or reviews. It does not collect user input. Use it to build social proof into your form flow -- for example, showing testimonials on a signup page or before a payment step.

Configuration

PropertyTypeDefaultDescription
labelstring--Heading text displayed above the testimonials section
helpstring--Subtitle or description text below the heading
widthLayoutWidth"full"Horizontal space the field occupies
eyebrowstring--Small text displayed above the heading (e.g. "What our customers say")
testimonialsTestimonialItem[]--Array of testimonial objects (see below)

TestimonialItem Object

Each item in the testimonials array has the following properties:

PropertyTypeDescription
idstringUnique identifier for the testimonial
namestringName of the person giving the testimonial
rolestringJob title or role (e.g. "CEO", "Product Manager")
companystringCompany or organization name
avatarstringURL to the person's avatar image
ratingnumberStar rating value (e.g. 1-5)
contentstringThe testimonial quote text

Example Usage

A testimonials section with three customer quotes:

{
  "type": "testimonials",
  "eyebrow": "Trusted by teams worldwide",
  "label": "What Our Customers Say",
  "help": "See why thousands of teams choose Buildorado",
  "testimonials": [
    {
      "name": "Sarah Chen",
      "role": "Product Lead",
      "company": "Acme Corp",
      "rating": 5,
      "content": "Buildorado cut our form development time by 80%. The workflow builder is a game changer."
    },
    {
      "name": "Marcus Johnson",
      "role": "CTO",
      "company": "TechStart",
      "rating": 5,
      "content": "We replaced three separate tools with Buildorado. The integrations work flawlessly."
    }
  ]
}

On this page

Testimonials | Buildorado