PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / service-process / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/service-process/block.json

205 lines 6.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/service-process",
5 "version": "1.0.0",
6 "title": "Service Process",
7 "category": "bkbg-business",
8 "icon": "chart-line",
9 "description": "Agency or service business 'How we work' section with numbered phases, deliverables, and connecting timeline.",
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-service-process-editor",
12 "style": "bkbg-service-process-style",
13 "viewScript": "bkbg-service-process-frontend",
14 "supports": {
15 "html": false,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "eyebrow": {
23 "type": "string",
24 "default": "Our Process"
25 },
26 "heading": {
27 "type": "string",
28 "default": "How We Turn Your Vision Into Reality"
29 },
30 "subtext": {
31 "type": "string",
32 "default": "A proven four-step approach that delivers exceptional results, on time and on budget."
33 },
34 "phases": {
35 "type": "array",
36 "default": [
37 {
38 "icon": "🔍",
39 "iconType": "custom-char",
40 "iconDashicon": "",
41 "iconImageUrl": "",
42 "name": "Discovery",
43 "description": "We deep-dive into your business goals, audience, and competitive landscape to build a solid strategic foundation.",
44 "deliverables": [
45 "Stakeholder interviews",
46 "Competitive analysis",
47 "Project brief & scope"
48 ]
49 },
50 {
51 "icon": "🎨",
52 "iconType": "custom-char",
53 "iconDashicon": "",
54 "iconImageUrl": "",
55 "name": "Strategy & Design",
56 "description": "Our creative team crafts the UX, visual identity, and content structure — all validated with real user feedback.",
57 "deliverables": [
58 "Wireframes & prototypes",
59 "Brand system",
60 "Content architecture"
61 ]
62 },
63 {
64 "icon": "⚙️",
65 "iconType": "custom-char",
66 "iconDashicon": "",
67 "iconImageUrl": "",
68 "name": "Build & Test",
69 "description": "Pixel-perfect development with full QA across devices. We iterate rapidly with weekly demos so nothing is a surprise.",
70 "deliverables": [
71 "Coded components",
72 "QA reports",
73 "Performance benchmarks"
74 ]
75 },
76 {
77 "icon": "🚀",
78 "iconType": "custom-char",
79 "iconDashicon": "",
80 "iconImageUrl": "",
81 "name": "Launch & Grow",
82 "description": "We handle the launch and stay with you — monitoring, optimising, and scaling what works with measurable KPIs.",
83 "deliverables": [
84 "Go-live support",
85 "Analytics setup",
86 "Monthly growth reports"
87 ]
88 }
89 ]
90 },
91 "layout": {
92 "type": "string",
93 "default": "horizontal"
94 },
95 "connectorStyle": {
96 "type": "string",
97 "default": "line"
98 },
99 "showDeliverables": {
100 "type": "boolean",
101 "default": true
102 },
103 "showNumbers": {
104 "type": "boolean",
105 "default": true
106 },
107 "showCta": {
108 "type": "boolean",
109 "default": true
110 },
111 "ctaLabel": {
112 "type": "string",
113 "default": "Start Your Project"
114 },
115 "ctaUrl": {
116 "type": "string",
117 "default": "#"
118 },
119 "maxWidth": {
120 "type": "number",
121 "default": 1200
122 },
123 "paddingTop": {
124 "type": "number",
125 "default": 80
126 },
127 "paddingBottom": {
128 "type": "number",
129 "default": 80
130 },
131 "bgColor": {
132 "type": "string",
133 "default": "#ffffff"
134 },
135 "headingColor": {
136 "type": "string",
137 "default": "#111827"
138 },
139 "subColor": {
140 "type": "string",
141 "default": "#6b7280"
142 },
143 "eyebrowColor": {
144 "type": "string",
145 "default": "#6366f1"
146 },
147 "phaseNumBg": {
148 "type": "string",
149 "default": "#6366f1"
150 },
151 "phaseNumColor": {
152 "type": "string",
153 "default": "#ffffff"
154 },
155 "phaseNameColor": {
156 "type": "string",
157 "default": "#111827"
158 },
159 "phaseDescColor": {
160 "type": "string",
161 "default": "#6b7280"
162 },
163 "deliverableColor": {
164 "type": "string",
165 "default": "#374151"
166 },
167 "connectorColor": {
168 "type": "string",
169 "default": "#c7d2fe"
170 },
171 "cardBg": {
172 "type": "string",
173 "default": "#f8fafc"
174 },
175 "cardBorder": {
176 "type": "string",
177 "default": "#e2e8f0"
178 },
179 "ctaBg": {
180 "type": "string",
181 "default": "#6366f1"
182 },
183 "ctaColor": {
184 "type": "string",
185 "default": "#ffffff"
186 },
187 "accentColor": {
188 "type": "string",
189 "default": "#6366f1"
190 },
191 "headingTypo": {
192 "type": "object",
193 "default": {}
194 },
195 "phaseNameTypo": {
196 "type": "object",
197 "default": {}
198 },
199 "phaseDescTypo": {
200 "type": "object",
201 "default": {}
202 }
203 }
204 }
205