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 / faq-grid / block.json

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

216 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/faq-grid",
4 "title": "FAQ Grid",
5 "category": "bkbg-business",
6 "icon": "editor-help",
7 "description": "Display frequently asked questions as a scannable card grid — ideal for pricing pages and knowledge bases.",
8 "keywords": [
9 "faq",
10 "grid",
11 "questions",
12 "answers",
13 "cards",
14 "help",
15 "knowledge base"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-faq-grid-editor",
19 "editorStyle": "bkbg-faq-grid-style",
20 "style": "bkbg-faq-grid-style",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "heading": {
30 "type": "string",
31 "default": "Frequently Asked Questions"
32 },
33 "showHeading": {
34 "type": "boolean",
35 "default": true
36 },
37 "subheading": {
38 "type": "string",
39 "default": "Everything you need to know."
40 },
41 "showSubheading": {
42 "type": "boolean",
43 "default": true
44 },
45 "items": {
46 "type": "array",
47 "default": [
48 {
49 "question": "How do I get started?",
50 "answer": "Sign up for a free account and follow our onboarding wizard. You'll be set up in under five minutes with no credit card required."
51 },
52 {
53 "question": "Is there a free trial?",
54 "answer": "Yes — all plans include a 14-day free trial. No credit card required. Cancel anytime."
55 },
56 {
57 "question": "Can I change my plan later?",
58 "answer": "Absolutely. You can upgrade, downgrade, or cancel your plan at any time from your account settings."
59 },
60 {
61 "question": "Do you offer refunds?",
62 "answer": "We offer a 30-day money-back guarantee on all annual plans. Monthly plans are non-refundable but you can cancel at any time."
63 },
64 {
65 "question": "Is my data secure?",
66 "answer": "All data is encrypted in transit and at rest. We are SOC 2 Type II certified and GDPR compliant."
67 },
68 {
69 "question": "How do I contact support?",
70 "answer": "You can reach our support team via live chat or email. Enterprise customers also get a dedicated account manager."
71 }
72 ]
73 },
74 "columns": {
75 "type": "number",
76 "default": 2
77 },
78 "style": {
79 "type": "string",
80 "default": "card"
81 },
82 "showNumber": {
83 "type": "boolean",
84 "default": false
85 },
86 "showDivider": {
87 "type": "boolean",
88 "default": false
89 },
90 "questionSize": {
91 "type": "number",
92 "default": 17
93 },
94 "questionWeight": {
95 "type": "number",
96 "default": 700
97 },
98 "questionLineHeight": {
99 "type": "number",
100 "default": 1.35
101 },
102 "answerSize": {
103 "type": "number",
104 "default": 15
105 },
106 "answerLineHeight": {
107 "type": "number",
108 "default": 1.7
109 },
110 "typoHeading": {
111 "type": "object",
112 "default": {}
113 },
114 "typoSubheading": {
115 "type": "object",
116 "default": {}
117 },
118 "typoQuestion": {
119 "type": "object",
120 "default": {}
121 },
122 "typoAnswer": {
123 "type": "object",
124 "default": {}
125 },
126 "cardPadding": {
127 "type": "number",
128 "default": 28
129 },
130 "cardRadius": {
131 "type": "number",
132 "default": 14
133 },
134 "gap": {
135 "type": "number",
136 "default": 20
137 },
138 "headingSize": {
139 "type": "number",
140 "default": 32
141 },
142 "headingWeight": {
143 "type": "number",
144 "default": 800
145 },
146 "headingLineHeight": {
147 "type": "number",
148 "default": 1.15
149 },
150 "headingAlign": {
151 "type": "string",
152 "default": "center"
153 },
154 "subSize": {
155 "type": "number",
156 "default": 18
157 },
158 "subLineHeight": {
159 "type": "number",
160 "default": 1.6
161 },
162 "sectionGap": {
163 "type": "number",
164 "default": 48
165 },
166 "paddingTop": {
167 "type": "number",
168 "default": 64
169 },
170 "paddingBottom": {
171 "type": "number",
172 "default": 64
173 },
174 "accentColor": {
175 "type": "string",
176 "default": "#6c3fb5"
177 },
178 "bgColor": {
179 "type": "string",
180 "default": "#ffffff"
181 },
182 "textColor": {
183 "type": "string",
184 "default": "#1e293b"
185 },
186 "headingColor": {
187 "type": "string",
188 "default": "#0f172a"
189 },
190 "subColor": {
191 "type": "string",
192 "default": "#64748b"
193 },
194 "questionColor": {
195 "type": "string",
196 "default": "#0f172a"
197 },
198 "answerColor": {
199 "type": "string",
200 "default": "#475569"
201 },
202 "cardBg": {
203 "type": "string",
204 "default": "#ffffff"
205 },
206 "cardBorder": {
207 "type": "string",
208 "default": "#e2e8f0"
209 },
210 "numberColor": {
211 "type": "string",
212 "default": "#6c3fb5"
213 }
214 }
215 }
216