Fintech Feature Grid
featurefrom Fintech Light
Live
AI Usage Rules
Emphasize security, reliability, and compliance in feature descriptions.
Code Template
<section className="py-16"><div className="mx-auto max-w-7xl px-6"><h2 className="text-2xl font-bold text-slate-900">{title}</h2><div className="mt-12 grid grid-cols-1 gap-8 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"
}
}
}