| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/client-showcase", |
| 5 |
"title": "Client Showcase", |
| 6 |
"description": "\"Trusted by\" section featuring client logos with optional tagline, grayscale hover effect, and a pull-quote from a featured client.", |
| 7 |
"icon": "awards", |
| 8 |
"category": "bkbg-marketing", |
| 9 |
"keywords": [ |
| 10 |
"clients", |
| 11 |
"logos", |
| 12 |
"trusted by", |
| 13 |
"partners", |
| 14 |
"brands", |
| 15 |
"social proof", |
| 16 |
"testimonial" |
| 17 |
], |
| 18 |
"textdomain": "blockenberg", |
| 19 |
"editorScript": "bkbg-client-showcase-editor", |
| 20 |
"style": "bkbg-client-showcase-style", |
| 21 |
"viewScript": "bkbg-client-showcase-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"align": [ |
| 25 |
"wide", |
| 26 |
"full" |
| 27 |
] |
| 28 |
}, |
| 29 |
"attributes": { |
| 30 |
"headline": { |
| 31 |
"type": "string", |
| 32 |
"default": "Trusted by 10,000+ businesses worldwide" |
| 33 |
}, |
| 34 |
"subheadline": { |
| 35 |
"type": "string", |
| 36 |
"default": "From fast-growing startups to global enterprises." |
| 37 |
}, |
| 38 |
"showHeader": { |
| 39 |
"type": "boolean", |
| 40 |
"default": true |
| 41 |
}, |
| 42 |
"headerAlign": { |
| 43 |
"type": "string", |
| 44 |
"default": "center" |
| 45 |
}, |
| 46 |
"logos": { |
| 47 |
"type": "array", |
| 48 |
"default": [ |
| 49 |
{ |
| 50 |
"id": "l1", |
| 51 |
"name": "Acme Corp", |
| 52 |
"imageUrl": "", |
| 53 |
"imageId": 0 |
| 54 |
}, |
| 55 |
{ |
| 56 |
"id": "l2", |
| 57 |
"name": "Globex", |
| 58 |
"imageUrl": "", |
| 59 |
"imageId": 0 |
| 60 |
}, |
| 61 |
{ |
| 62 |
"id": "l3", |
| 63 |
"name": "Initech", |
| 64 |
"imageUrl": "", |
| 65 |
"imageId": 0 |
| 66 |
}, |
| 67 |
{ |
| 68 |
"id": "l4", |
| 69 |
"name": "Umbrella Co", |
| 70 |
"imageUrl": "", |
| 71 |
"imageId": 0 |
| 72 |
}, |
| 73 |
{ |
| 74 |
"id": "l5", |
| 75 |
"name": "Stark Ind.", |
| 76 |
"imageUrl": "", |
| 77 |
"imageId": 0 |
| 78 |
}, |
| 79 |
{ |
| 80 |
"id": "l6", |
| 81 |
"name": "Wayne Ent.", |
| 82 |
"imageUrl": "", |
| 83 |
"imageId": 0 |
| 84 |
} |
| 85 |
] |
| 86 |
}, |
| 87 |
"showQuote": { |
| 88 |
"type": "boolean", |
| 89 |
"default": true |
| 90 |
}, |
| 91 |
"quoteText": { |
| 92 |
"type": "string", |
| 93 |
"default": "This platform transformed how our team operates. We cut our delivery time in half within the first month." |
| 94 |
}, |
| 95 |
"quoteAuthor": { |
| 96 |
"type": "string", |
| 97 |
"default": "Sarah Johnson" |
| 98 |
}, |
| 99 |
"quoteRole": { |
| 100 |
"type": "string", |
| 101 |
"default": "Head of Product, Acme Corp" |
| 102 |
}, |
| 103 |
"quoteAvatarUrl": { |
| 104 |
"type": "string", |
| 105 |
"default": "" |
| 106 |
}, |
| 107 |
"quoteAvatarId": { |
| 108 |
"type": "number", |
| 109 |
"default": 0 |
| 110 |
}, |
| 111 |
"layout": { |
| 112 |
"type": "string", |
| 113 |
"default": "row" |
| 114 |
}, |
| 115 |
"columns": { |
| 116 |
"type": "number", |
| 117 |
"default": 6 |
| 118 |
}, |
| 119 |
"logoHeight": { |
| 120 |
"type": "number", |
| 121 |
"default": 40 |
| 122 |
}, |
| 123 |
"logoGrayscale": { |
| 124 |
"type": "boolean", |
| 125 |
"default": true |
| 126 |
}, |
| 127 |
"logoHoverColor": { |
| 128 |
"type": "boolean", |
| 129 |
"default": true |
| 130 |
}, |
| 131 |
"logoBg": { |
| 132 |
"type": "boolean", |
| 133 |
"default": false |
| 134 |
}, |
| 135 |
"logoRadius": { |
| 136 |
"type": "number", |
| 137 |
"default": 8 |
| 138 |
}, |
| 139 |
"logoPadding": { |
| 140 |
"type": "number", |
| 141 |
"default": 16 |
| 142 |
}, |
| 143 |
"gap": { |
| 144 |
"type": "number", |
| 145 |
"default": 32 |
| 146 |
}, |
| 147 |
"headerGap": { |
| 148 |
"type": "number", |
| 149 |
"default": 40 |
| 150 |
}, |
| 151 |
"quoteGap": { |
| 152 |
"type": "number", |
| 153 |
"default": 48 |
| 154 |
}, |
| 155 |
"paddingTop": { |
| 156 |
"type": "number", |
| 157 |
"default": 64 |
| 158 |
}, |
| 159 |
"paddingBottom": { |
| 160 |
"type": "number", |
| 161 |
"default": 64 |
| 162 |
}, |
| 163 |
"headlineColor": { |
| 164 |
"type": "string", |
| 165 |
"default": "#0f172a" |
| 166 |
}, |
| 167 |
"subColor": { |
| 168 |
"type": "string", |
| 169 |
"default": "#64748b" |
| 170 |
}, |
| 171 |
"logoBgColor": { |
| 172 |
"type": "string", |
| 173 |
"default": "#f8fafc" |
| 174 |
}, |
| 175 |
"logoBorderColor": { |
| 176 |
"type": "string", |
| 177 |
"default": "#e2e8f0" |
| 178 |
}, |
| 179 |
"logoTintColor": { |
| 180 |
"type": "string", |
| 181 |
"default": "#94a3b8" |
| 182 |
}, |
| 183 |
"quoteBg": { |
| 184 |
"type": "string", |
| 185 |
"default": "#f8fafc" |
| 186 |
}, |
| 187 |
"quoteBorder": { |
| 188 |
"type": "string", |
| 189 |
"default": "#e2e8f0" |
| 190 |
}, |
| 191 |
"quoteTextColor": { |
| 192 |
"type": "string", |
| 193 |
"default": "#1e293b" |
| 194 |
}, |
| 195 |
"quoteMetaColor": { |
| 196 |
"type": "string", |
| 197 |
"default": "#64748b" |
| 198 |
}, |
| 199 |
"accentColor": { |
| 200 |
"type": "string", |
| 201 |
"default": "#6c3fb5" |
| 202 |
}, |
| 203 |
"sectionBg": { |
| 204 |
"type": "string", |
| 205 |
"default": "" |
| 206 |
}, |
| 207 |
"headlineFontSize": { |
| 208 |
"type": "number", |
| 209 |
"default": 28 |
| 210 |
}, |
| 211 |
"headlineFontWeight": { |
| 212 |
"type": "string", |
| 213 |
"default": "600" |
| 214 |
}, |
| 215 |
"subFontSize": { |
| 216 |
"type": "number", |
| 217 |
"default": 16 |
| 218 |
}, |
| 219 |
"subFontWeight": { |
| 220 |
"type": "string", |
| 221 |
"default": "400" |
| 222 |
}, |
| 223 |
"quoteFontSize": { |
| 224 |
"type": "number", |
| 225 |
"default": 18 |
| 226 |
}, |
| 227 |
"quoteFontWeight": { |
| 228 |
"type": "string", |
| 229 |
"default": "400" |
| 230 |
}, |
| 231 |
"quoteLineHeight": { |
| 232 |
"type": "number", |
| 233 |
"default": 1.6 |
| 234 |
}, |
| 235 |
"typoHeadline": { |
| 236 |
"type": "object", |
| 237 |
"default": {} |
| 238 |
}, |
| 239 |
"typoSubhead": { |
| 240 |
"type": "object", |
| 241 |
"default": {} |
| 242 |
}, |
| 243 |
"typoQuote": { |
| 244 |
"type": "object", |
| 245 |
"default": {} |
| 246 |
} |
| 247 |
} |
| 248 |
} |
| 249 |
|