| 1 |
const ctaMetadata = [ |
| 2 |
{ |
| 3 |
id: "cta-01", |
| 4 |
type: "cta", |
| 5 |
style: ["simple", "full-width"], |
| 6 |
description: |
| 7 |
"Simple call-to-action with catchy title, trust-building text and a blue primary button. Clean full-width design. Perfect for main conversion sections.", |
| 8 |
}, |
| 9 |
{ |
| 10 |
id: "cta-02", |
| 11 |
type: "cta", |
| 12 |
style: ["promotional", "dual-button"], |
| 13 |
description: |
| 14 |
"Promotional call-to-action with special offer, compelling text and two buttons (primary and secondary). Attractive full-width design. Ideal for time-limited offers.", |
| 15 |
}, |
| 16 |
{ |
| 17 |
id: "cta-03", |
| 18 |
type: "cta", |
| 19 |
style: ["split", "image-content"], |
| 20 |
description: |
| 21 |
"Two-column call-to-action with content on the left (title, description, button) and image on the right. Professional full-width design. Perfect for premium services.", |
| 22 |
}, |
| 23 |
]; |
| 24 |
|
| 25 |
export default ctaMetadata; |
| 26 |
|