| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/testimonial-grid", |
| 5 |
"title": "Testimonial Grid", |
| 6 |
"category": "bkbg-marketing", |
| 7 |
"icon": "grid-view", |
| 8 |
"description": "Static masonry-style grid of testimonial cards with stars, avatars, and author details.", |
| 9 |
"keywords": [ |
| 10 |
"testimonial", |
| 11 |
"grid", |
| 12 |
"review", |
| 13 |
"stars", |
| 14 |
"quote" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-testimonial-grid-editor", |
| 18 |
"editorStyle": "bkbg-testimonial-grid-style", |
| 19 |
"style": "bkbg-testimonial-grid-style", |
| 20 |
"viewScript": "bkbg-testimonial-grid-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"items": { |
| 32 |
"type": "array", |
| 33 |
"default": [ |
| 34 |
{ |
| 35 |
"quote": "Absolutely transformed the way we work. Highly recommended!", |
| 36 |
"author": "Sarah Johnson", |
| 37 |
"role": "CEO, TechCorp", |
| 38 |
"avatarUrl": "", |
| 39 |
"avatarId": 0, |
| 40 |
"stars": 5 |
| 41 |
}, |
| 42 |
{ |
| 43 |
"quote": "The best product I have ever used. Support is phenomenal and fast.", |
| 44 |
"author": "Michael Chen", |
| 45 |
"role": "Designer, Studio X", |
| 46 |
"avatarUrl": "", |
| 47 |
"avatarId": 0, |
| 48 |
"stars": 5 |
| 49 |
}, |
| 50 |
{ |
| 51 |
"quote": "Five stars, no question. It just works perfectly every single time.", |
| 52 |
"author": "Emily Davis", |
| 53 |
"role": "Founder, GrowthLab", |
| 54 |
"avatarUrl": "", |
| 55 |
"avatarId": 0, |
| 56 |
"stars": 4 |
| 57 |
}, |
| 58 |
{ |
| 59 |
"quote": "Seamless experience from onboarding to daily use. Love everything.", |
| 60 |
"author": "James Wilson", |
| 61 |
"role": "Product Manager", |
| 62 |
"avatarUrl": "", |
| 63 |
"avatarId": 0, |
| 64 |
"stars": 5 |
| 65 |
} |
| 66 |
] |
| 67 |
}, |
| 68 |
"columns": { |
| 69 |
"type": "number", |
| 70 |
"default": 3 |
| 71 |
}, |
| 72 |
"gap": { |
| 73 |
"type": "number", |
| 74 |
"default": 24 |
| 75 |
}, |
| 76 |
"showStars": { |
| 77 |
"type": "boolean", |
| 78 |
"default": true |
| 79 |
}, |
| 80 |
"showAvatar": { |
| 81 |
"type": "boolean", |
| 82 |
"default": true |
| 83 |
}, |
| 84 |
"bgColor": { |
| 85 |
"type": "string", |
| 86 |
"default": "#f8f7ff" |
| 87 |
}, |
| 88 |
"cardBg": { |
| 89 |
"type": "string", |
| 90 |
"default": "#ffffff" |
| 91 |
}, |
| 92 |
"textColor": { |
| 93 |
"type": "string", |
| 94 |
"default": "#222222" |
| 95 |
}, |
| 96 |
"accentColor": { |
| 97 |
"type": "string", |
| 98 |
"default": "#6c3fb5" |
| 99 |
}, |
| 100 |
"starColor": { |
| 101 |
"type": "string", |
| 102 |
"default": "#f5a623" |
| 103 |
}, |
| 104 |
"borderRadius": { |
| 105 |
"type": "number", |
| 106 |
"default": 16 |
| 107 |
}, |
| 108 |
"cardPadding": { |
| 109 |
"type": "number", |
| 110 |
"default": 28 |
| 111 |
}, |
| 112 |
"shadow": { |
| 113 |
"type": "boolean", |
| 114 |
"default": true |
| 115 |
}, |
| 116 |
"quoteAlign": { |
| 117 |
"type": "string", |
| 118 |
"default": "left" |
| 119 |
}, |
| 120 |
"quoteTypo": { |
| 121 |
"type": "object", |
| 122 |
"default": {} |
| 123 |
}, |
| 124 |
"nameTypo": { |
| 125 |
"type": "object", |
| 126 |
"default": {} |
| 127 |
} |
| 128 |
} |
| 129 |
} |