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 / story-section / block.json

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

226 lines 4.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/story-section",
5 "title": "Story Section",
6 "description": "Full-width founder or brand story section with photo, pull quote, and milestones.",
7 "category": "bkbg-business",
8 "icon": "book-alt",
9 "keywords": [
10 "story",
11 "founder",
12 "about",
13 "brand",
14 "milestones",
15 "timeline"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-story-section-editor",
19 "editorStyle": "bkbg-story-section-style",
20 "style": "bkbg-story-section-style",
21 "viewScript": "bkbg-story-section-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "layout": {
33 "type": "string",
34 "default": "photo-left"
35 },
36 "headline": {
37 "type": "string",
38 "default": "Our Story"
39 },
40 "subheadline": {
41 "type": "string",
42 "default": "How it all started \u2014 and where we're headed."
43 },
44 "bodyText": {
45 "type": "string",
46 "default": "We started with a simple idea: make the web more beautiful and accessible for everyone. Over the years we've grown into a passionate team of builders, designers, and thinkers who care deeply about craft."
47 },
48 "founderName": {
49 "type": "string",
50 "default": "Alex Johnson"
51 },
52 "founderTitle": {
53 "type": "string",
54 "default": "Founder & CEO"
55 },
56 "founderPhotoUrl": {
57 "type": "string",
58 "default": ""
59 },
60 "founderPhotoId": {
61 "type": "number",
62 "default": 0
63 },
64 "showPhoto": {
65 "type": "boolean",
66 "default": true
67 },
68 "photoCaption": {
69 "type": "boolean",
70 "default": true
71 },
72 "pullQuote": {
73 "type": "string",
74 "default": "\"We didn't just build a product \u2014 we built something we're proud of.\""
75 },
76 "showPullQuote": {
77 "type": "boolean",
78 "default": true
79 },
80 "showMilestones": {
81 "type": "boolean",
82 "default": true
83 },
84 "milestones": {
85 "type": "array",
86 "default": [
87 {
88 "year": "2018",
89 "title": "Founded",
90 "description": "Started as a one-person project in a home office."
91 },
92 {
93 "year": "2020",
94 "title": "First 1,000 Users",
95 "description": "Reached our first major milestone through word of mouth."
96 },
97 {
98 "year": "2022",
99 "title": "Series A",
100 "description": "Raised funding to grow the team and expand the product."
101 },
102 {
103 "year": "2024",
104 "title": "Global Launch",
105 "description": "Expanded to 40+ countries and 100,000+ active users."
106 }
107 ]
108 },
109 "showCta": {
110 "type": "boolean",
111 "default": true
112 },
113 "ctaLabel": {
114 "type": "string",
115 "default": "Join Our Journey"
116 },
117 "ctaUrl": {
118 "type": "string",
119 "default": "#"
120 },
121 "ctaNewTab": {
122 "type": "boolean",
123 "default": false
124 },
125 "bgColor": {
126 "type": "string",
127 "default": "#ffffff"
128 },
129 "accentColor": {
130 "type": "string",
131 "default": "#6366f1"
132 },
133 "headlineColor": {
134 "type": "string",
135 "default": "#0f172a"
136 },
137 "subColor": {
138 "type": "string",
139 "default": "#475569"
140 },
141 "bodyColor": {
142 "type": "string",
143 "default": "#334155"
144 },
145 "quoteColor": {
146 "type": "string",
147 "default": "#1e293b"
148 },
149 "yearColor": {
150 "type": "string",
151 "default": "#6366f1"
152 },
153 "milestoneTitleColor": {
154 "type": "string",
155 "default": "#0f172a"
156 },
157 "milestoneTextColor": {
158 "type": "string",
159 "default": "#475569"
160 },
161 "ctaBg": {
162 "type": "string",
163 "default": "#6366f1"
164 },
165 "ctaColor": {
166 "type": "string",
167 "default": "#ffffff"
168 },
169 "headlineSize": {
170 "type": "number",
171 "default": 40
172 },
173 "subSize": {
174 "type": "number",
175 "default": 18
176 },
177 "quoteSize": {
178 "type": "number",
179 "default": 22
180 },
181 "bodySize": {
182 "type": "number",
183 "default": 16
184 },
185 "borderRadius": {
186 "type": "number",
187 "default": 12
188 },
189 "photoBorderRadius": {
190 "type": "number",
191 "default": 12
192 },
193 "headlineFontWeight": {
194 "type": "string",
195 "default": "800"
196 },
197 "bodyFontWeight": {
198 "type": "string",
199 "default": "400"
200 },
201 "headlineLineHeight": {
202 "type": "number",
203 "default": 1.1
204 },
205 "bodyLineHeight": {
206 "type": "number",
207 "default": 1.7
208 },
209 "headlineTypo": {
210 "type": "object",
211 "default": {}
212 },
213 "subheadlineTypo": {
214 "type": "object",
215 "default": {}
216 },
217 "bodyTypo": {
218 "type": "object",
219 "default": {}
220 },
221 "quoteTypo": {
222 "type": "object",
223 "default": {}
224 }
225 }
226 }