Feature Grid Bold
featurefrom Startup Bold
Live
AI Usage Rules
Each feature card gets a subtle gradient border and glow effect. Use emoji or icons.
Code Template
<section className="bg-[#0F0F23] py-24"><div className="mx-auto max-w-7xl px-6"><h2 className="text-3xl font-bold text-white text-center">{title}</h2><div className="mt-16 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"
}
}
}