Fintech CTA
ctafrom Fintech Light
Live
AI Usage Rules
Use trust-building language. Mention security certifications if applicable.
Code Template
<section className="bg-blue-900 py-16 rounded-2xl mx-6"><div className="mx-auto max-w-3xl text-center"><h2 className="text-3xl font-bold text-white">{headline}</h2><p className="mt-4 text-blue-200">{description}</p><a href="{ctaLink}" className="mt-8 inline-block rounded-lg bg-white px-8 py-3 font-semibold text-blue-900">{ctaText}</a></div></section>Props Schema
| Property | Type | Default | Description |
|---|---|---|---|
| ctaLink | string | — | |
| ctaText | string | — | |
| headline | string | — | |
| description | string | — |
View raw JSON schema
{
"type": "object",
"properties": {
"ctaLink": {
"type": "string"
},
"ctaText": {
"type": "string"
},
"headline": {
"type": "string"
},
"description": {
"type": "string"
}
}
}