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 / badge-wall / block.json

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

204 lines 5.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/badge-wall",
4 "title": "Badge Wall",
5 "category": "bkbg-marketing",
6 "icon": "awards",
7 "description": "Showcase certifications, achievements, awards, or partner logos as a styled badge grid.",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-badge-wall-editor",
10 "style": "bkbg-badge-wall-style",
11 "attributes": {
12 "title": {
13 "type": "string",
14 "default": "Certifications & Awards"
15 },
16 "showTitle": {
17 "type": "boolean",
18 "default": true
19 },
20 "subtitle": {
21 "type": "string",
22 "default": "Recognized by leading industry organisations"
23 },
24 "showSubtitle": {
25 "type": "boolean",
26 "default": true
27 },
28 "columns": {
29 "type": "number",
30 "default": 4
31 },
32 "showIcon": {
33 "type": "boolean",
34 "default": true
35 },
36 "showLabel": {
37 "type": "boolean",
38 "default": true
39 },
40 "showIssuer": {
41 "type": "boolean",
42 "default": true
43 },
44 "showYear": {
45 "type": "boolean",
46 "default": true
47 },
48 "iconSize": {
49 "type": "number",
50 "default": 48
51 },
52 "borderRadius": {
53 "type": "number",
54 "default": 14
55 },
56 "cardPadding": {
57 "type": "number",
58 "default": 22
59 },
60 "fontSize": {
61 "type": "number",
62 "default": 13
63 },
64 "titleFontSize": {
65 "type": "number",
66 "default": 15
67 },
68 "bgColor": {
69 "type": "string",
70 "default": "#ffffff"
71 },
72 "cardBg": {
73 "type": "string",
74 "default": "#f9fafb"
75 },
76 "borderColor": {
77 "type": "string",
78 "default": "#e5e7eb"
79 },
80 "headingColor": {
81 "type": "string",
82 "default": "#111827"
83 },
84 "subtitleColor": {
85 "type": "string",
86 "default": "#6b7280"
87 },
88 "labelColor": {
89 "type": "string",
90 "default": "#111827"
91 },
92 "issuerColor": {
93 "type": "string",
94 "default": "#6b7280"
95 },
96 "yearColor": {
97 "type": "string",
98 "default": "#9ca3af"
99 },
100 "badges": {
101 "type": "array",
102 "default": [
103 {
104 "icon": "🏆",
105 "iconType": "custom-char",
106 "iconDashicon": "",
107 "iconImageUrl": "",
108 "accentColor": "#f59e0b",
109 "label": "Product of the Year",
110 "issuer": "TechCrunch",
111 "year": "2024"
112 },
113 {
114 "icon": "�
115 ",
116 "iconType": "custom-char",
117 "iconDashicon": "",
118 "iconImageUrl": "",
119 "accentColor": "#10b981",
120 "label": "ISO 27001 Certified",
121 "issuer": "BSI Group",
122 "year": "2024"
123 },
124 {
125 "icon": "🌟",
126 "iconType": "custom-char",
127 "iconDashicon": "",
128 "iconImageUrl": "",
129 "accentColor": "#6366f1",
130 "label": "Top SaaS Award",
131 "issuer": "G2 Crowd",
132 "year": "2023"
133 },
134 {
135 "icon": "🔒",
136 "iconType": "custom-char",
137 "iconDashicon": "",
138 "iconImageUrl": "",
139 "accentColor": "#ef4444",
140 "label": "SOC 2 Type II",
141 "issuer": "AICPA",
142 "year": "2023"
143 },
144 {
145 "icon": "🚀",
146 "iconType": "custom-char",
147 "iconDashicon": "",
148 "iconImageUrl": "",
149 "accentColor": "#8b5cf6",
150 "label": "Fastest Growing Startup",
151 "issuer": "Forbes",
152 "year": "2023"
153 },
154 {
155 "icon": "💡",
156 "iconType": "custom-char",
157 "iconDashicon": "",
158 "iconImageUrl": "",
159 "accentColor": "#14b8a6",
160 "label": "Innovation Leader",
161 "issuer": "Gartner",
162 "year": "2022"
163 },
164 {
165 "icon": "🤝",
166 "iconType": "custom-char",
167 "iconDashicon": "",
168 "iconImageUrl": "",
169 "accentColor": "#ec4899",
170 "label": "Best Support Team",
171 "issuer": "Capterra",
172 "year": "2022"
173 },
174 {
175 "icon": "🌍",
176 "iconType": "custom-char",
177 "iconDashicon": "",
178 "iconImageUrl": "",
179 "accentColor": "#f59e0b",
180 "label": "Carbon Neutral Certified",
181 "issuer": "Climate Partner",
182 "year": "2022"
183 }
184 ]
185 },
186 "headingTypo": {
187 "type": "object",
188 "default": {}
189 },
190 "subtitleTypo": {
191 "type": "object",
192 "default": {}
193 },
194 "labelTypo": {
195 "type": "object",
196 "default": {}
197 },
198 "issuerTypo": {
199 "type": "object",
200 "default": {}
201 }
202 }
203 }
204