| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/cta-band", |
| 5 |
"title": "CTA Band", |
| 6 |
"category": "bkbg-marketing", |
| 7 |
"icon": "megaphone", |
| 8 |
"description": "Full-width colored band with headline, supporting text and a call-to-action button.", |
| 9 |
"keywords": [ |
| 10 |
"cta", |
| 11 |
"band", |
| 12 |
"banner", |
| 13 |
"button", |
| 14 |
"action", |
| 15 |
"call to action" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-cta-band-editor", |
| 19 |
"editorStyle": "bkbg-cta-band-style", |
| 20 |
"style": "bkbg-cta-band-style", |
| 21 |
"viewScript": "bkbg-cta-band-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"headline": { |
| 33 |
"type": "string", |
| 34 |
"default": "Ready to get started?" |
| 35 |
}, |
| 36 |
"subtext": { |
| 37 |
"type": "string", |
| 38 |
"default": "Join thousands of happy customers today." |
| 39 |
}, |
| 40 |
"btnLabel": { |
| 41 |
"type": "string", |
| 42 |
"default": "Get Started" |
| 43 |
}, |
| 44 |
"btnUrl": { |
| 45 |
"type": "string", |
| 46 |
"default": "#" |
| 47 |
}, |
| 48 |
"btnNewTab": { |
| 49 |
"type": "boolean", |
| 50 |
"default": false |
| 51 |
}, |
| 52 |
"layout": { |
| 53 |
"type": "string", |
| 54 |
"default": "center" |
| 55 |
}, |
| 56 |
"bgColor": { |
| 57 |
"type": "string", |
| 58 |
"default": "#1a73e8" |
| 59 |
}, |
| 60 |
"bgColor2": { |
| 61 |
"type": "string", |
| 62 |
"default": "#0d47a1" |
| 63 |
}, |
| 64 |
"useGradient": { |
| 65 |
"type": "boolean", |
| 66 |
"default": true |
| 67 |
}, |
| 68 |
"textColor": { |
| 69 |
"type": "string", |
| 70 |
"default": "#ffffff" |
| 71 |
}, |
| 72 |
"btnBg": { |
| 73 |
"type": "string", |
| 74 |
"default": "#ffffff" |
| 75 |
}, |
| 76 |
"btnText": { |
| 77 |
"type": "string", |
| 78 |
"default": "#1a73e8" |
| 79 |
}, |
| 80 |
"headlineSz": { |
| 81 |
"type": "number", |
| 82 |
"default": 32 |
| 83 |
}, |
| 84 |
"subtextSz": { |
| 85 |
"type": "number", |
| 86 |
"default": 16 |
| 87 |
}, |
| 88 |
"paddingV": { |
| 89 |
"type": "number", |
| 90 |
"default": 60 |
| 91 |
}, |
| 92 |
"paddingH": { |
| 93 |
"type": "number", |
| 94 |
"default": 40 |
| 95 |
}, |
| 96 |
"btnRadius": { |
| 97 |
"type": "number", |
| 98 |
"default": 6 |
| 99 |
}, |
| 100 |
"typoHeadline": { |
| 101 |
"type": "object", |
| 102 |
"default": {} |
| 103 |
}, |
| 104 |
"typoSubtext": { |
| 105 |
"type": "object", |
| 106 |
"default": {} |
| 107 |
} |
| 108 |
} |
| 109 |
} |
| 110 |
|