SaaS Features
featurefrom SaaS Clean
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
| Property | Type | Default | Description |
|---|---|---|---|
| title | string | — | |
| features | array | — |
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"
}
}
}
}
}
}