SaaS Testimonials
testimonialfrom SaaS Clean
Live
AI Usage Rules
Show 3 testimonials. Include avatar, name, role, and company.
Code Template
<section className="bg-white py-24"><div className="mx-auto max-w-7xl px-6"><h2 className="text-3xl font-bold text-center text-gray-900">{title}</h2><div className="mt-16 grid grid-cols-1 gap-8 md:grid-cols-3">{testimonials}</div></div></section>Props Schema
| Property | Type | Default | Description |
|---|---|---|---|
| title | string | — | |
| testimonials | array | — |
View raw JSON schema
{
"type": "object",
"properties": {
"title": {
"type": "string"
},
"testimonials": {
"type": "array",
"items": {
"type": "object",
"properties": {
"role": {
"type": "string"
},
"quote": {
"type": "string"
},
"author": {
"type": "string"
},
"avatar": {
"type": "string"
}
}
}
}
}
}