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 / vision-mission / block.json

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

289 lines 8.0 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/vision-mission",
5 "title": "Vision & Mission",
6 "description": "Company mission, vision, and core values section with multiple layouts.",
7 "category": "bkbg-business",
8 "icon": "flag",
9 "keywords": [
10 "vision",
11 "mission",
12 "values",
13 "company",
14 "purpose",
15 "culture",
16 "about"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-vision-mission-editor",
20 "style": "bkbg-vision-mission-style",
21 "viewScript": "bkbg-vision-mission-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "eyebrow": {
31 "type": "string",
32 "default": "Who We Are"
33 },
34 "showEyebrow": {
35 "type": "boolean",
36 "default": true
37 },
38 "heading": {
39 "type": "string",
40 "default": "Built Around a Clear Purpose"
41 },
42 "showHeading": {
43 "type": "boolean",
44 "default": true
45 },
46 "showMission": {
47 "type": "boolean",
48 "default": true
49 },
50 "missionLabel": {
51 "type": "string",
52 "default": "Our Mission"
53 },
54 "missionText": {
55 "type": "string",
56 "default": "To empower businesses of every size with the tools, strategy, and support they need to grow with confidence."
57 },
58 "missionIcon": {
59 "type": "string",
60 "default": "🎯"
61 },
62 "missionIconType": {
63 "type": "string",
64 "default": "custom-char"
65 },
66 "missionIconDashicon": {
67 "type": "string",
68 "default": ""
69 },
70 "missionIconImageUrl": {
71 "type": "string",
72 "default": ""
73 },
74 "showVision": {
75 "type": "boolean",
76 "default": true
77 },
78 "visionLabel": {
79 "type": "string",
80 "default": "Our Vision"
81 },
82 "visionText": {
83 "type": "string",
84 "default": "A world where every entrepreneur has access to enterprise-grade growth systems — regardless of their budget or background."
85 },
86 "visionIcon": {
87 "type": "string",
88 "default": "🔭"
89 },
90 "visionIconType": {
91 "type": "string",
92 "default": "custom-char"
93 },
94 "visionIconDashicon": {
95 "type": "string",
96 "default": ""
97 },
98 "visionIconImageUrl": {
99 "type": "string",
100 "default": ""
101 },
102 "showValues": {
103 "type": "boolean",
104 "default": true
105 },
106 "valuesLabel": {
107 "type": "string",
108 "default": "Core Values"
109 },
110 "values": {
111 "type": "array",
112 "default": [
113 {
114 "icon": "💡",
115 "iconType": "custom-char",
116 "iconDashicon": "",
117 "iconImageUrl": "",
118 "title": "Clarity First",
119 "description": "We believe in clear communication and transparent processes, always."
120 },
121 {
122 "icon": "🤝",
123 "iconType": "custom-char",
124 "iconDashicon": "",
125 "iconImageUrl": "",
126 "title": "Client Obsessed",
127 "description": "Every decision starts and ends with what creates real value for our clients."
128 },
129 {
130 "icon": "🚀",
131 "iconType": "custom-char",
132 "iconDashicon": "",
133 "iconImageUrl": "",
134 "title": "Bias for Action",
135 "description": "We move fast, learn quickly, and course-correct without ego."
136 },
137 {
138 "icon": "🌱",
139 "iconType": "custom-char",
140 "iconDashicon": "",
141 "iconImageUrl": "",
142 "title": "Long-term Thinking",
143 "description": "We build for sustainability, not just the next quarter."
144 },
145 {
146 "icon": "📐",
147 "iconType": "custom-char",
148 "iconDashicon": "",
149 "iconImageUrl": "",
150 "title": "Relentless Craft",
151 "description": "We take pride in every detail — from code to copy to client calls."
152 },
153 {
154 "icon": "♻️",
155 "iconType": "custom-char",
156 "iconDashicon": "",
157 "iconImageUrl": "",
158 "title": "Responsible Growth",
159 "description": "We grow in ways that are good for our team, clients, and community."
160 }
161 ]
162 },
163 "layout": {
164 "type": "string",
165 "default": "mission-top"
166 },
167 "valuesColumns": {
168 "type": "number",
169 "default": 3
170 },
171 "bgColor": {
172 "type": "string",
173 "default": "#ffffff"
174 },
175 "eyebrowColor": {
176 "type": "string",
177 "default": "#7c3aed"
178 },
179 "eyebrowBg": {
180 "type": "string",
181 "default": "#f3f0ff"
182 },
183 "headingColor": {
184 "type": "string",
185 "default": "#111827"
186 },
187 "missionBg": {
188 "type": "string",
189 "default": "#f8f5ff"
190 },
191 "missionBorder": {
192 "type": "string",
193 "default": "#7c3aed"
194 },
195 "missionLabelColor": {
196 "type": "string",
197 "default": "#7c3aed"
198 },
199 "missionTextColor": {
200 "type": "string",
201 "default": "#1f2937"
202 },
203 "visionBg": {
204 "type": "string",
205 "default": "#eff6ff"
206 },
207 "visionBorder": {
208 "type": "string",
209 "default": "#3b82f6"
210 },
211 "visionLabelColor": {
212 "type": "string",
213 "default": "#2563eb"
214 },
215 "visionTextColor": {
216 "type": "string",
217 "default": "#1f2937"
218 },
219 "valueCardBg": {
220 "type": "string",
221 "default": "#f9fafb"
222 },
223 "valueCardBorder": {
224 "type": "string",
225 "default": "#e5e7eb"
226 },
227 "valueTitleColor": {
228 "type": "string",
229 "default": "#111827"
230 },
231 "valueDescColor": {
232 "type": "string",
233 "default": "#6b7280"
234 },
235 "valuesLabelColor": {
236 "type": "string",
237 "default": "#111827"
238 },
239 "accentColor": {
240 "type": "string",
241 "default": "#7c3aed"
242 },
243 "headingSize": {
244 "type": "number",
245 "default": 38
246 },
247 "missionTextSize": {
248 "type": "number",
249 "default": 18
250 },
251 "maxWidth": {
252 "type": "number",
253 "default": 1100
254 },
255 "paddingTop": {
256 "type": "number",
257 "default": 80
258 },
259 "paddingBottom": {
260 "type": "number",
261 "default": 80
262 },
263 "eyebrowSize": {
264 "type": "number",
265 "default": 12
266 },
267 "headingTypo": {
268 "type": "object",
269 "default": {}
270 },
271 "eyebrowTypo": {
272 "type": "object",
273 "default": {}
274 },
275 "statementTypo": {
276 "type": "object",
277 "default": {}
278 },
279 "valueTitleTypo": {
280 "type": "object",
281 "default": {}
282 },
283 "valueDescTypo": {
284 "type": "object",
285 "default": {}
286 }
287 }
288 }
289