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 / testimonial-featured / block.json

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

176 lines 3.9 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/testimonial-featured",
5 "version": "1.0.0",
6 "title": "Testimonial Featured",
7 "category": "bkbg-marketing",
8 "icon": "format-quote",
9 "description": "A single large featured testimonial section \u2014 big decorative quote mark, full testimonial text, person photo, name, title, company logo, star rating, and optional result metric badge. Designed as a standalone section for maximum impact. Different from testimonial carousels or grids.",
10 "keywords": [
11 "testimonial",
12 "quote",
13 "review",
14 "featured",
15 "success story",
16 "customer",
17 "case study"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-testimonial-featured-editor",
21 "style": "bkbg-testimonial-featured-style",
22 "viewScript": "bkbg-testimonial-featured-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "quote": {
32 "type": "string",
33 "default": "Switching to this platform was the single best decision we made last year. Within 90 days, our team's productivity tripled and our clients noticed the difference immediately. I genuinely can't imagine going back to how we worked before."
34 },
35 "personName": {
36 "type": "string",
37 "default": "Alexandra Chen"
38 },
39 "personTitle": {
40 "type": "string",
41 "default": "CEO & Co-Founder, Luminary Tech"
42 },
43 "personAvatarUrl": {
44 "type": "string",
45 "default": ""
46 },
47 "personAvatarId": {
48 "type": "integer",
49 "default": 0
50 },
51 "personAvatarAlt": {
52 "type": "string",
53 "default": ""
54 },
55 "companyLogoUrl": {
56 "type": "string",
57 "default": ""
58 },
59 "companyLogoId": {
60 "type": "integer",
61 "default": 0
62 },
63 "companyLogoAlt": {
64 "type": "string",
65 "default": ""
66 },
67 "showCompanyLogo": {
68 "type": "boolean",
69 "default": false
70 },
71 "rating": {
72 "type": "integer",
73 "default": 5
74 },
75 "showRating": {
76 "type": "boolean",
77 "default": true
78 },
79 "showResultMetric": {
80 "type": "boolean",
81 "default": true
82 },
83 "resultMetric": {
84 "type": "string",
85 "default": "+340% Productivity in 90 days"
86 },
87 "layout": {
88 "type": "string",
89 "default": "centered"
90 },
91 "cardStyle": {
92 "type": "string",
93 "default": "clean"
94 },
95 "showQuotemark": {
96 "type": "boolean",
97 "default": true
98 },
99 "quotemarkSize": {
100 "type": "integer",
101 "default": 120
102 },
103 "avatarSize": {
104 "type": "integer",
105 "default": 64
106 },
107 "bgColor": {
108 "type": "string",
109 "default": "#ffffff"
110 },
111 "textColor": {
112 "type": "string",
113 "default": "#111827"
114 },
115 "nameColor": {
116 "type": "string",
117 "default": "#111827"
118 },
119 "titleColor": {
120 "type": "string",
121 "default": "#6b7280"
122 },
123 "quotemarkColor": {
124 "type": "string",
125 "default": "#ede9fe"
126 },
127 "accentColor": {
128 "type": "string",
129 "default": "#7c3aed"
130 },
131 "starColor": {
132 "type": "string",
133 "default": "#f59e0b"
134 },
135 "resultBg": {
136 "type": "string",
137 "default": "#f0fdf4"
138 },
139 "resultColor": {
140 "type": "string",
141 "default": "#15803d"
142 },
143 "cardBg": {
144 "type": "string",
145 "default": "#f9fafb"
146 },
147 "borderColor": {
148 "type": "string",
149 "default": "#e5e7eb"
150 },
151 "quoteTypo": {
152 "type": "object",
153 "default": {}
154 },
155 "nameTypo": {
156 "type": "object",
157 "default": {}
158 },
159 "titleTypo": {
160 "type": "object",
161 "default": {}
162 },
163 "maxWidth": {
164 "type": "integer",
165 "default": 860
166 },
167 "paddingTop": {
168 "type": "integer",
169 "default": 80
170 },
171 "paddingBottom": {
172 "type": "integer",
173 "default": 80
174 }
175 }
176 }