Components/546de638-5af9-4fa1-a0e1-aef47e155728

SaaS Testimonials

testimonialfrom SaaS Clean
Sign in to Add to Project
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

PropertyTypeDefaultDescription
titlestring
testimonialsarray
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"
          }
        }
      }
    }
  }
}