SaaS FAQ
faqfrom SaaS Clean
Live
AI Usage Rules
Use accordion-style FAQ. Group related questions together.
Code Template
<section className="bg-gray-50 py-24"><div className="mx-auto max-w-3xl px-6"><h2 className="text-3xl font-bold text-gray-900">{title}</h2><dl className="mt-10 space-y-6">{items}</dl></div></section>Props Schema
| Property | Type | Default | Description |
|---|---|---|---|
| items | array | — | |
| title | string | — |
View raw JSON schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"answer": {
"type": "string"
},
"question": {
"type": "string"
}
}
}
},
"title": {
"type": "string"
}
}
}