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 / speaker-lineup / block.json

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

187 lines 5.2 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/speaker-lineup",
5 "version": "1.0.0",
6 "title": "Speaker Lineup",
7 "category": "bkbg-business",
8 "icon": "groups",
9 "description": "Event/conference speaker lineup section with avatar, topic, bio, and social links. Perfect for summits, webinars, and courses.",
10 "keywords": [
11 "speaker",
12 "lineup",
13 "event",
14 "conference",
15 "summit",
16 "webinar"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-speaker-lineup-editor",
20 "style": "bkbg-speaker-lineup-style",
21 "viewScript": "bkbg-speaker-lineup-frontend",
22 "supports": {
23 "html": false,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "eyebrow": {
31 "type": "string",
32 "default": "Expert Speakers"
33 },
34 "heading": {
35 "type": "string",
36 "default": "Learn From the Best"
37 },
38 "subtext": {
39 "type": "string",
40 "default": "World-class speakers sharing their expertise, stories, and actionable strategies."
41 },
42 "speakers": {
43 "type": "array",
44 "default": [
45 {
46 "name": "Sarah Johnson",
47 "title": "CEO",
48 "company": "TechVentures",
49 "topic": "Future of AI in Business",
50 "bio": "Sarah has 15 years of experience leading high-growth tech startups and has spoken at TED, SXSW, and Davos.",
51 "avatarUrl": "",
52 "twitterUrl": "",
53 "linkedinUrl": ""
54 },
55 {
56 "name": "Marcus Lee",
57 "title": "Author & Advisor",
58 "company": "Growth Lab",
59 "topic": "Scaling to 7 Figures",
60 "bio": "Marcus is a 3x founder and bestselling author whose companies have generated over $50M in revenue.",
61 "avatarUrl": "",
62 "twitterUrl": "",
63 "linkedinUrl": ""
64 },
65 {
66 "name": "Dr. Elena Vasquez",
67 "title": "Research Director",
68 "company": "Stanford AI Lab",
69 "topic": "Human-Centered Design",
70 "bio": "Elena leads cutting-edge research at the intersection of AI and human behavior, with 80+ published papers.",
71 "avatarUrl": "",
72 "twitterUrl": "",
73 "linkedinUrl": ""
74 }
75 ]
76 },
77 "layout": {
78 "type": "string",
79 "default": "grid"
80 },
81 "columns": {
82 "type": "number",
83 "default": 3
84 },
85 "cardStyle": {
86 "type": "string",
87 "default": "card"
88 },
89 "showBio": {
90 "type": "boolean",
91 "default": true
92 },
93 "showTopic": {
94 "type": "boolean",
95 "default": true
96 },
97 "showSocials": {
98 "type": "boolean",
99 "default": true
100 },
101 "bgColor": {
102 "type": "string",
103 "default": "#ffffff"
104 },
105 "headingColor": {
106 "type": "string",
107 "default": "#111827"
108 },
109 "subColor": {
110 "type": "string",
111 "default": "#6b7280"
112 },
113 "eyebrowColor": {
114 "type": "string",
115 "default": "#6366f1"
116 },
117 "cardBg": {
118 "type": "string",
119 "default": "#f8fafc"
120 },
121 "cardBorder": {
122 "type": "string",
123 "default": "#e2e8f0"
124 },
125 "nameColor": {
126 "type": "string",
127 "default": "#111827"
128 },
129 "titleColor": {
130 "type": "string",
131 "default": "#6b7280"
132 },
133 "topicBg": {
134 "type": "string",
135 "default": "#ede9fe"
136 },
137 "topicColor": {
138 "type": "string",
139 "default": "#5b21b6"
140 },
141 "bioColor": {
142 "type": "string",
143 "default": "#4b5563"
144 },
145 "socialColor": {
146 "type": "string",
147 "default": "#6366f1"
148 },
149 "accentColor": {
150 "type": "string",
151 "default": "#6366f1"
152 },
153 "maxWidth": {
154 "type": "number",
155 "default": 1200
156 },
157 "paddingTop": {
158 "type": "number",
159 "default": 80
160 },
161 "paddingBottom": {
162 "type": "number",
163 "default": 80
164 },
165 "eyebrowTypo": {
166 "type": "object",
167 "default": {}
168 },
169 "headingTypo": {
170 "type": "object",
171 "default": {}
172 },
173 "subtextTypo": {
174 "type": "object",
175 "default": {}
176 },
177 "nameTypo": {
178 "type": "object",
179 "default": {}
180 },
181 "descTypo": {
182 "type": "object",
183 "default": {}
184 }
185 }
186 }
187