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

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

190 lines 5.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/certification-wall",
5 "version": "1.0.0",
6 "title": "Certification Wall",
7 "category": "bkbg-business",
8 "icon": "awards",
9 "description": "Showcase professional certifications, accreditations and badges with verify links.",
10 "textdomain": "blockenberg",
11 "editorScript": "bkbg-certification-wall-editor",
12 "style": "bkbg-certification-wall-style",
13 "viewScript": "bkbg-certification-wall-frontend",
14 "supports": {
15 "html": false,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "eyebrow": {
23 "type": "string",
24 "default": "Trusted & Verified"
25 },
26 "heading": {
27 "type": "string",
28 "default": "Our Certifications & Accreditations"
29 },
30 "subtext": {
31 "type": "string",
32 "default": "Industry-recognised credentials that demonstrate our commitment to excellence."
33 },
34 "certs": {
35 "type": "array",
36 "default": [
37 {
38 "name": "ISO 9001:2015",
39 "issuer": "ISO",
40 "year": "2023",
41 "imageUrl": "",
42 "verifyUrl": "#"
43 },
44 {
45 "name": "AWS Certified",
46 "issuer": "Amazon",
47 "year": "2023",
48 "imageUrl": "",
49 "verifyUrl": "#"
50 },
51 {
52 "name": "SOC 2 Type II",
53 "issuer": "AICPA",
54 "year": "2024",
55 "imageUrl": "",
56 "verifyUrl": "#"
57 },
58 {
59 "name": "GDPR Compliant",
60 "issuer": "EU DPA",
61 "year": "2024",
62 "imageUrl": "",
63 "verifyUrl": "#"
64 },
65 {
66 "name": "PCI DSS Level 1",
67 "issuer": "PCI SSC",
68 "year": "2024",
69 "imageUrl": "",
70 "verifyUrl": "#"
71 },
72 {
73 "name": "Google Partner",
74 "issuer": "Google",
75 "year": "2024",
76 "imageUrl": "",
77 "verifyUrl": "#"
78 }
79 ]
80 },
81 "layout": {
82 "type": "string",
83 "default": "grid"
84 },
85 "columns": {
86 "type": "number",
87 "default": 3
88 },
89 "showYear": {
90 "type": "boolean",
91 "default": true
92 },
93 "showIssuer": {
94 "type": "boolean",
95 "default": true
96 },
97 "showVerify": {
98 "type": "boolean",
99 "default": true
100 },
101 "verifyLabel": {
102 "type": "string",
103 "default": "Verify Certificate"
104 },
105 "maxWidth": {
106 "type": "number",
107 "default": 1100
108 },
109 "paddingTop": {
110 "type": "number",
111 "default": 80
112 },
113 "paddingBottom": {
114 "type": "number",
115 "default": 80
116 },
117 "bgColor": {
118 "type": "string",
119 "default": "#f8fafc"
120 },
121 "headingColor": {
122 "type": "string",
123 "default": "#111827"
124 },
125 "subColor": {
126 "type": "string",
127 "default": "#6b7280"
128 },
129 "eyebrowColor": {
130 "type": "string",
131 "default": "#6366f1"
132 },
133 "cardBg": {
134 "type": "string",
135 "default": "#ffffff"
136 },
137 "cardBorder": {
138 "type": "string",
139 "default": "#e2e8f0"
140 },
141 "nameColor": {
142 "type": "string",
143 "default": "#111827"
144 },
145 "issuerColor": {
146 "type": "string",
147 "default": "#6b7280"
148 },
149 "accentColor": {
150 "type": "string",
151 "default": "#6366f1"
152 },
153 "verifyColor": {
154 "type": "string",
155 "default": "#6366f1"
156 },
157 "headingFontSize": {
158 "type": "number",
159 "default": 32
160 },
161 "headingFontWeight": {
162 "type": "string",
163 "default": "700"
164 },
165 "headingLineHeight": {
166 "type": "number",
167 "default": 1.2
168 },
169 "bodyFontSize": {
170 "type": "number",
171 "default": 16
172 },
173 "bodyLineHeight": {
174 "type": "number",
175 "default": 1.6
176 },
177 "certNameFontSize": {
178 "type": "number",
179 "default": 15
180 },
181 "certNameFontWeight": {
182 "type": "string",
183 "default": "600"
184 },
185 "typoHeading": { "type": "object", "default": {} },
186 "typoSubtext": { "type": "object", "default": {} },
187 "typoCertName": { "type": "object", "default": {} }
188 }
189 }
190