Components/6f45ee0c-4cd7-4f2a-b994-50976fd62974

SaaS FAQ

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

PropertyTypeDefaultDescription
itemsarray
titlestring
View raw JSON schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "answer": {
            "type": "string"
          },
          "question": {
            "type": "string"
          }
        }
      }
    },
    "title": {
      "type": "string"
    }
  }
}