Composites & Sections · 8 Props
CtaStrip
Full-width call-to-action strip with headline, optional subtitle, and up to two CTA buttons.
Props
| Prop | Type | Default | Beschreibung |
|---|---|---|---|
| title * | string | — | |
| bgContainer | any | — | |
| class | string | — | |
| ctas | any[] | [] | |
| id | string | — | |
| layout | string | default | "minimal" | "default" | "compact" |
| subtitle | string | — | |
| trustItems | string[] | [] |
Beispiele
Default
Conversion-focused section divider with dual CTAs.
Ready to get started?
{
"type": "ctaStrip",
"props": {
"title": "Ready to get started?",
"ctas": [
{
"href": "#",
"label": "Get Started →",
"variant": "outline"
},
{
"href": "#",
"label": "Book a Call",
"variant": "outline"
}
]
}
} <CtaStrip title="Ready to get started?" ctas={[{"href":"#","label":"Get Started →","variant":"outline"},{"href":"#","label":"Book a Call","variant":"outline"}]} />