Components/1a201482-ea24-4bff-bec7-71395170797a

SaaS Features

featurefrom SaaS Clean
Sign in to Add to Project
Live

AI Usage Rules

Show 3-6 features in a grid. Each feature has an icon, title, and short description.

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-12 md:grid-cols-3">{features}</div></div></section>

Props Schema

PropertyTypeDefaultDescription
titlestring
featuresarray
View raw JSON schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "features": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "icon": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        }
      }
    }
  }
}