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
| Property | Type | Default | Description |
|---|---|---|---|
| label | string | -- | Heading text displayed above the testimonials section |
| help | string | -- | Subtitle or description text below the heading |
| width | LayoutWidth | "full" | Horizontal space the field occupies |
| eyebrow | string | -- | Small text displayed above the heading (e.g. "What our customers say") |
| testimonials | TestimonialItem[] | -- | Array of testimonial objects (see below) |
TestimonialItem Object
Each item in the testimonials array has the following properties:
| Property | Type | Description |
|---|---|---|
| id | string | Unique identifier for the testimonial |
| name | string | Name of the person giving the testimonial |
| role | string | Job title or role (e.g. "CEO", "Product Manager") |
| company | string | Company or organization name |
| avatar | string | URL to the person's avatar image |
| rating | number | Star rating value (e.g. 1-5) |
| content | string | The 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."
}
]
}