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 / minimal-footer / block.json

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

281 lines 7.4 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/minimal-footer",
5 "title": "Minimal Footer",
6 "category": "bkbg-layout",
7 "icon": "align-pull-left",
8 "description": "Clean, minimal site footer with logo (image or text), navigation columns, social icon links, and copyright line. A lighter alternative to the mega-footer.",
9 "keywords": [
10 "footer",
11 "minimal",
12 "nav",
13 "copyright",
14 "social",
15 "links",
16 "bottom"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-minimal-footer-editor",
20 "style": "bkbg-minimal-footer-style",
21 "attributes": {
22 "logoType": {
23 "type": "string",
24 "default": "text"
25 },
26 "logoText": {
27 "type": "string",
28 "default": "Acme Inc."
29 },
30 "logoUrl": {
31 "type": "string",
32 "default": ""
33 },
34 "logoImageUrl": {
35 "type": "string",
36 "default": ""
37 },
38 "logoImageId": {
39 "type": "number",
40 "default": 0
41 },
42 "logoWidth": {
43 "type": "number",
44 "default": 120
45 },
46 "tagline": {
47 "type": "string",
48 "default": "Building the modern web."
49 },
50 "showTagline": {
51 "type": "boolean",
52 "default": true
53 },
54 "navColumns": {
55 "type": "array",
56 "default": [
57 {
58 "id": "nc1",
59 "heading": "Product",
60 "links": [
61 {
62 "id": "l1",
63 "label": "Features",
64 "url": "#"
65 },
66 {
67 "id": "l2",
68 "label": "Pricing",
69 "url": "#"
70 },
71 {
72 "id": "l3",
73 "label": "Changelog",
74 "url": "#"
75 }
76 ]
77 },
78 {
79 "id": "nc2",
80 "heading": "Company",
81 "links": [
82 {
83 "id": "l4",
84 "label": "About",
85 "url": "#"
86 },
87 {
88 "id": "l5",
89 "label": "Blog",
90 "url": "#"
91 },
92 {
93 "id": "l6",
94 "label": "Careers",
95 "url": "#"
96 }
97 ]
98 },
99 {
100 "id": "nc3",
101 "heading": "Resources",
102 "links": [
103 {
104 "id": "l7",
105 "label": "Docs",
106 "url": "#"
107 },
108 {
109 "id": "l8",
110 "label": "Support",
111 "url": "#"
112 },
113 {
114 "id": "l9",
115 "label": "Status",
116 "url": "#"
117 }
118 ]
119 }
120 ],
121 "items": {
122 "type": "object"
123 }
124 },
125 "socials": {
126 "type": "array",
127 "default": [
128 {
129 "id": "s1",
130 "platform": "twitter",
131 "url": "#",
132 "label": "Twitter"
133 },
134 {
135 "id": "s2",
136 "platform": "github",
137 "url": "#",
138 "label": "GitHub"
139 },
140 {
141 "id": "s3",
142 "platform": "linkedin",
143 "url": "#",
144 "label": "LinkedIn"
145 }
146 ],
147 "items": {
148 "type": "object"
149 }
150 },
151 "showSocials": {
152 "type": "boolean",
153 "default": true
154 },
155 "copyright": {
156 "type": "string",
157 "default": "© 2026 Acme Inc. All rights reserved."
158 },
159 "showCopyright": {
160 "type": "boolean",
161 "default": true
162 },
163 "legalLinks": {
164 "type": "array",
165 "default": [
166 {
167 "id": "ll1",
168 "label": "Privacy Policy",
169 "url": "#"
170 },
171 {
172 "id": "ll2",
173 "label": "Terms of Service",
174 "url": "#"
175 }
176 ],
177 "items": {
178 "type": "object"
179 }
180 },
181 "showLegalLinks": {
182 "type": "boolean",
183 "default": true
184 },
185 "layout": {
186 "type": "string",
187 "default": "logo-left-nav-right"
188 },
189 "dividerStyle": {
190 "type": "string",
191 "default": "line"
192 },
193 "paddingTop": {
194 "type": "number",
195 "default": 56
196 },
197 "paddingBottom": {
198 "type": "number",
199 "default": 32
200 },
201 "footerBg": {
202 "type": "string",
203 "default": "#f8fafc"
204 },
205 "logoColor": {
206 "type": "string",
207 "default": "#0f172a"
208 },
209 "taglineColor": {
210 "type": "string",
211 "default": "#64748b"
212 },
213 "headingColor": {
214 "type": "string",
215 "default": "#0f172a"
216 },
217 "linkColor": {
218 "type": "string",
219 "default": "#475569"
220 },
221 "linkHoverColor": {
222 "type": "string",
223 "default": "#6c3fb5"
224 },
225 "socialColor": {
226 "type": "string",
227 "default": "#94a3b8"
228 },
229 "dividerColor": {
230 "type": "string",
231 "default": "#e2e8f0"
232 },
233 "copyrightColor": {
234 "type": "string",
235 "default": "#94a3b8"
236 },
237 "logoSize": {
238 "type": "number",
239 "default": 22
240 },
241 "linkSize": {
242 "type": "number",
243 "default": 14
244 },
245 "headingSize": {
246 "type": "number",
247 "default": 13
248 },
249 "logoTypo": {
250 "type": "object",
251 "default": {}
252 },
253 "taglineTypo": {
254 "type": "object",
255 "default": {}
256 },
257 "headingTypo": {
258 "type": "object",
259 "default": {}
260 },
261 "linkTypo": {
262 "type": "object",
263 "default": {}
264 },
265 "copyrightTypo": {
266 "type": "object",
267 "default": {}
268 }
269 },
270 "supports": {
271 "html": false,
272 "align": [
273 "wide",
274 "full"
275 ],
276 "spacing": {
277 "margin": true
278 }
279 }
280 }
281