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 / customer-results / block.json

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

244 lines 7.1 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/customer-results",
5 "version": "1.0.0",
6 "title": "Customer Results",
7 "category": "bkbg-marketing",
8 "icon": "star-filled",
9 "description": "Customer success stories with company logo, author quote, key outcome metrics, and industry tags.",
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-customer-results-editor",
12 "style": "bkbg-customer-results-style",
13 "viewScript": "bkbg-customer-results-frontend",
14 "supports": {
15 "html": false,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "eyebrow": {
23 "type": "string",
24 "default": "Customer Success"
25 },
26 "heading": {
27 "type": "string",
28 "default": "Real Teams, Real Results"
29 },
30 "subtext": {
31 "type": "string",
32 "default": "See how companies like yours are achieving measurable growth with Blockenberg."
33 },
34 "results": {
35 "type": "array",
36 "default": [
37 {
38 "companyName": "Acme Corp",
39 "companyLogo": "",
40 "authorName": "Sarah Chen",
41 "authorTitle": "Head of Marketing",
42 "quote": "We reduced our content production time by 60% while doubling our output quality. Blockenberg paid for itself in the first month.",
43 "metrics": [
44 {
45 "value": "60%",
46 "label": "Faster production"
47 },
48 {
49 "value": "",
50 "label": "Output quality"
51 },
52 {
53 "value": "1mo",
54 "label": "ROI payback"
55 }
56 ],
57 "tags": [
58 "Marketing",
59 "Content"
60 ]
61 },
62 {
63 "companyName": "TechFlow",
64 "companyLogo": "",
65 "authorName": "Marcus Reid",
66 "authorTitle": "CEO",
67 "quote": "Our team went from spending 40 hours/week on manual tasks to just 4. Blockenberg is genuinely transformative.",
68 "metrics": [
69 {
70 "value": "90%",
71 "label": "Time saved"
72 },
73 {
74 "value": "10×",
75 "label": "Team capacity"
76 },
77 {
78 "value": "40hrs",
79 "label": "Reclaimed weekly"
80 }
81 ],
82 "tags": [
83 "SaaS",
84 "Operations"
85 ]
86 },
87 {
88 "companyName": "Studio Bright",
89 "companyLogo": "",
90 "authorName": "Emma Larsson",
91 "authorTitle": "Creative Director",
92 "quote": "Client satisfaction scores went up 35 points after we adopted Blockenberg. The consistency it brings to our workflow is unmatched.",
93 "metrics": [
94 {
95 "value": "+35",
96 "label": "NPS increase"
97 },
98 {
99 "value": "100%",
100 "label": "On-time delivery"
101 },
102 {
103 "value": "4.9",
104 "label": "Client rating"
105 }
106 ],
107 "tags": [
108 "Agency",
109 "Creative"
110 ]
111 }
112 ]
113 },
114 "layout": {
115 "type": "string",
116 "default": "grid"
117 },
118 "columns": {
119 "type": "number",
120 "default": 3
121 },
122 "showMetrics": {
123 "type": "boolean",
124 "default": true
125 },
126 "showTags": {
127 "type": "boolean",
128 "default": true
129 },
130 "showAuthor": {
131 "type": "boolean",
132 "default": true
133 },
134 "showLogo": {
135 "type": "boolean",
136 "default": true
137 },
138 "maxWidth": {
139 "type": "number",
140 "default": 1200
141 },
142 "paddingTop": {
143 "type": "number",
144 "default": 80
145 },
146 "paddingBottom": {
147 "type": "number",
148 "default": 80
149 },
150 "bgColor": {
151 "type": "string",
152 "default": "#f8fafc"
153 },
154 "headingColor": {
155 "type": "string",
156 "default": "#111827"
157 },
158 "subColor": {
159 "type": "string",
160 "default": "#6b7280"
161 },
162 "eyebrowColor": {
163 "type": "string",
164 "default": "#6366f1"
165 },
166 "cardBg": {
167 "type": "string",
168 "default": "#ffffff"
169 },
170 "cardBorder": {
171 "type": "string",
172 "default": "#e2e8f0"
173 },
174 "quoteColor": {
175 "type": "string",
176 "default": "#374151"
177 },
178 "authorColor": {
179 "type": "string",
180 "default": "#111827"
181 },
182 "titleColor": {
183 "type": "string",
184 "default": "#6b7280"
185 },
186 "metricNumColor": {
187 "type": "string",
188 "default": "#6366f1"
189 },
190 "metricLabelColor": {
191 "type": "string",
192 "default": "#6b7280"
193 },
194 "tagBg": {
195 "type": "string",
196 "default": "#ede9fe"
197 },
198 "tagColor": {
199 "type": "string",
200 "default": "#6d28d9"
201 },
202 "logoBg": {
203 "type": "string",
204 "default": "#f1f5f9"
205 },
206 "accentColor": {
207 "type": "string",
208 "default": "#6366f1"
209 },
210 "eyebrowFontSize": {
211 "type": "number",
212 "default": 14
213 },
214 "headingFontSize": {
215 "type": "number",
216 "default": 28
217 },
218 "subtextFontSize": {
219 "type": "number",
220 "default": 16
221 },
222 "metricNumFontSize": {
223 "type": "number",
224 "default": 28
225 },
226 "metricLabelFontSize": {
227 "type": "number",
228 "default": 13
229 },
230 "typoEyebrow": {
231 "type": "object",
232 "default": {}
233 },
234 "typoHeading": {
235 "type": "object",
236 "default": {}
237 },
238 "typoSubtext": {
239 "type": "object",
240 "default": {}
241 }
242 }
243 }
244