PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / gradient-cta / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/gradient-cta/block.json

183 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/gradient-cta",
5 "title": "Gradient CTA",
6 "category": "bkbg-marketing",
7 "icon": "star-filled",
8 "description": "A bold full-width call-to-action section with a gradient or solid background, headline, subtitle, and buttons.",
9 "textdomain": "blockenberg",
10 "editorScript": "bkbg-gradient-cta-editor",
11 "style": "bkbg-gradient-cta-style",
12 "attributes": {
13 "headline": {
14 "type": "string",
15 "default": "Ready to transform your workflow?"
16 },
17 "subtitle": {
18 "type": "string",
19 "default": "Join 10,000+ teams who ship 10\u00d7 faster with our platform. Start free \u2014 no credit card required."
20 },
21 "showSubtitle": {
22 "type": "boolean",
23 "default": true
24 },
25 "showBadge": {
26 "type": "boolean",
27 "default": true
28 },
29 "badge": {
30 "type": "string",
31 "default": "Join 10,000+ teams"
32 },
33 "primaryLabel": {
34 "type": "string",
35 "default": "Start for free"
36 },
37 "primaryUrl": {
38 "type": "string",
39 "default": "#"
40 },
41 "primaryTarget": {
42 "type": "string",
43 "default": "_self"
44 },
45 "showSecondary": {
46 "type": "boolean",
47 "default": true
48 },
49 "secondaryLabel": {
50 "type": "string",
51 "default": "See how it works \u2192"
52 },
53 "secondaryUrl": {
54 "type": "string",
55 "default": "#"
56 },
57 "secondaryTarget": {
58 "type": "string",
59 "default": "_self"
60 },
61 "preset": {
62 "type": "string",
63 "default": "purple"
64 },
65 "customGradient": {
66 "type": "string",
67 "default": ""
68 },
69 "showPattern": {
70 "type": "boolean",
71 "default": true
72 },
73 "patternType": {
74 "type": "string",
75 "default": "dots"
76 },
77 "textAlign": {
78 "type": "string",
79 "default": "center"
80 },
81 "contentMaxWidth": {
82 "type": "number",
83 "default": 680
84 },
85 "headlineSize": {
86 "type": "number",
87 "default": 46
88 },
89 "subtitleSize": {
90 "type": "number",
91 "default": 18
92 },
93 "badgeSize": {
94 "type": "number",
95 "default": 13
96 },
97 "btnRadius": {
98 "type": "number",
99 "default": 50
100 },
101 "paddingTop": {
102 "type": "number",
103 "default": 96
104 },
105 "paddingBottom": {
106 "type": "number",
107 "default": 96
108 },
109 "headlineColor": {
110 "type": "string",
111 "default": "#ffffff"
112 },
113 "subtitleColor": {
114 "type": "string",
115 "default": "rgba(255,255,255,0.82)"
116 },
117 "badgeBg": {
118 "type": "string",
119 "default": "rgba(255,255,255,0.18)"
120 },
121 "badgeColor": {
122 "type": "string",
123 "default": "#ffffff"
124 },
125 "primaryBg": {
126 "type": "string",
127 "default": "#ffffff"
128 },
129 "primaryColor": {
130 "type": "string",
131 "default": "#6c3fb5"
132 },
133 "secondaryColor": {
134 "type": "string",
135 "default": "rgba(255,255,255,0.85)"
136 },
137 "headlineFontWeight": {
138 "type": "string",
139 "default": "700"
140 },
141 "headlineLineHeight": {
142 "type": "number",
143 "default": 1.15
144 },
145 "subtitleLineHeight": {
146 "type": "number",
147 "default": 1.5
148 },
149 "subtitleFontWeight": {
150 "type": "string",
151 "default": "400"
152 },
153 "typoHeadline": {
154 "type": "object",
155 "default": {}
156 },
157 "typoSubtitle": {
158 "type": "object",
159 "default": {}
160 },
161 "typoBadge": {
162 "type": "object",
163 "default": {}
164 }
165 },
166 "supports": {
167 "html": false,
168 "align": [
169 "wide",
170 "full"
171 ]
172 },
173 "keywords": [
174 "cta",
175 "call to action",
176 "gradient",
177 "banner",
178 "promo",
179 "section",
180 "hero"
181 ]
182 }
183