| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/integration-wall", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Integration Wall", |
| 7 |
"category": "bkbg-business", |
| 8 |
"icon": "share", |
| 9 |
"description": "Showcase software integrations and connected apps with category filter, logos, and a 'Browse All' CTA.", |
| 10 |
"textdomain": "blockenberg", |
| 11 |
"editorScript": "bkbg-integration-wall-editor", |
| 12 |
"style": "bkbg-integration-wall-style", |
| 13 |
"viewScript": "bkbg-integration-wall-frontend", |
| 14 |
"supports": { |
| 15 |
"html": false, |
| 16 |
"align": [ |
| 17 |
"wide", |
| 18 |
"full" |
| 19 |
] |
| 20 |
}, |
| 21 |
"attributes": { |
| 22 |
"eyebrow": { |
| 23 |
"type": "string", |
| 24 |
"default": "Ecosystem" |
| 25 |
}, |
| 26 |
"heading": { |
| 27 |
"type": "string", |
| 28 |
"default": "Works With Your Favourite Tools" |
| 29 |
}, |
| 30 |
"subtext": { |
| 31 |
"type": "string", |
| 32 |
"default": "Connect Blockenberg to 200+ apps and automate your workflow without writing a single line of code." |
| 33 |
}, |
| 34 |
"integrations": { |
| 35 |
"type": "array", |
| 36 |
"default": [ |
| 37 |
{ |
| 38 |
"name": "Slack", |
| 39 |
"category": "Communication", |
| 40 |
"logoUrl": "", |
| 41 |
"url": "#", |
| 42 |
"description": "Send real-time notifications" |
| 43 |
}, |
| 44 |
{ |
| 45 |
"name": "Zapier", |
| 46 |
"category": "Automation", |
| 47 |
"logoUrl": "", |
| 48 |
"url": "#", |
| 49 |
"description": "Connect 5,000+ apps" |
| 50 |
}, |
| 51 |
{ |
| 52 |
"name": "HubSpot", |
| 53 |
"category": "CRM", |
| 54 |
"logoUrl": "", |
| 55 |
"url": "#", |
| 56 |
"description": "Sync contacts & deals" |
| 57 |
}, |
| 58 |
{ |
| 59 |
"name": "Stripe", |
| 60 |
"category": "Payments", |
| 61 |
"logoUrl": "", |
| 62 |
"url": "#", |
| 63 |
"description": "Accept payments seamlessly" |
| 64 |
}, |
| 65 |
{ |
| 66 |
"name": "Notion", |
| 67 |
"category": "Productivity", |
| 68 |
"logoUrl": "", |
| 69 |
"url": "#", |
| 70 |
"description": "Sync docs & databases" |
| 71 |
}, |
| 72 |
{ |
| 73 |
"name": "GitHub", |
| 74 |
"category": "Development", |
| 75 |
"logoUrl": "", |
| 76 |
"url": "#", |
| 77 |
"description": "Link commits to work items" |
| 78 |
}, |
| 79 |
{ |
| 80 |
"name": "Google Analytics", |
| 81 |
"category": "Analytics", |
| 82 |
"logoUrl": "", |
| 83 |
"url": "#", |
| 84 |
"description": "Track performance" |
| 85 |
}, |
| 86 |
{ |
| 87 |
"name": "Mailchimp", |
| 88 |
"category": "Email", |
| 89 |
"logoUrl": "", |
| 90 |
"url": "#", |
| 91 |
"description": "Automate email campaigns" |
| 92 |
}, |
| 93 |
{ |
| 94 |
"name": "Salesforce", |
| 95 |
"category": "CRM", |
| 96 |
"logoUrl": "", |
| 97 |
"url": "#", |
| 98 |
"description": "Enterprise CRM sync" |
| 99 |
}, |
| 100 |
{ |
| 101 |
"name": "Figma", |
| 102 |
"category": "Design", |
| 103 |
"logoUrl": "", |
| 104 |
"url": "#", |
| 105 |
"description": "Embed design specs" |
| 106 |
}, |
| 107 |
{ |
| 108 |
"name": "Jira", |
| 109 |
"category": "Development", |
| 110 |
"logoUrl": "", |
| 111 |
"url": "#", |
| 112 |
"description": "Link issues to tasks" |
| 113 |
}, |
| 114 |
{ |
| 115 |
"name": "Intercom", |
| 116 |
"category": "Communication", |
| 117 |
"logoUrl": "", |
| 118 |
"url": "#", |
| 119 |
"description": "Trigger support messages" |
| 120 |
} |
| 121 |
] |
| 122 |
}, |
| 123 |
"showFilter": { |
| 124 |
"type": "boolean", |
| 125 |
"default": true |
| 126 |
}, |
| 127 |
"cardStyle": { |
| 128 |
"type": "string", |
| 129 |
"default": "card" |
| 130 |
}, |
| 131 |
"columns": { |
| 132 |
"type": "number", |
| 133 |
"default": 4 |
| 134 |
}, |
| 135 |
"showDesc": { |
| 136 |
"type": "boolean", |
| 137 |
"default": true |
| 138 |
}, |
| 139 |
"showCta": { |
| 140 |
"type": "boolean", |
| 141 |
"default": true |
| 142 |
}, |
| 143 |
"ctaLabel": { |
| 144 |
"type": "string", |
| 145 |
"default": "Browse All Integrations →" |
| 146 |
}, |
| 147 |
"ctaUrl": { |
| 148 |
"type": "string", |
| 149 |
"default": "#" |
| 150 |
}, |
| 151 |
"maxWidth": { |
| 152 |
"type": "number", |
| 153 |
"default": 1200 |
| 154 |
}, |
| 155 |
"paddingTop": { |
| 156 |
"type": "number", |
| 157 |
"default": 80 |
| 158 |
}, |
| 159 |
"paddingBottom": { |
| 160 |
"type": "number", |
| 161 |
"default": 80 |
| 162 |
}, |
| 163 |
"bgColor": { |
| 164 |
"type": "string", |
| 165 |
"default": "#ffffff" |
| 166 |
}, |
| 167 |
"headingColor": { |
| 168 |
"type": "string", |
| 169 |
"default": "#111827" |
| 170 |
}, |
| 171 |
"subColor": { |
| 172 |
"type": "string", |
| 173 |
"default": "#6b7280" |
| 174 |
}, |
| 175 |
"eyebrowColor": { |
| 176 |
"type": "string", |
| 177 |
"default": "#6366f1" |
| 178 |
}, |
| 179 |
"cardBg": { |
| 180 |
"type": "string", |
| 181 |
"default": "#f8fafc" |
| 182 |
}, |
| 183 |
"cardBorder": { |
| 184 |
"type": "string", |
| 185 |
"default": "#e2e8f0" |
| 186 |
}, |
| 187 |
"nameColor": { |
| 188 |
"type": "string", |
| 189 |
"default": "#111827" |
| 190 |
}, |
| 191 |
"descColor": { |
| 192 |
"type": "string", |
| 193 |
"default": "#6b7280" |
| 194 |
}, |
| 195 |
"logoBg": { |
| 196 |
"type": "string", |
| 197 |
"default": "#e0e7ff" |
| 198 |
}, |
| 199 |
"logoColor": { |
| 200 |
"type": "string", |
| 201 |
"default": "#4338ca" |
| 202 |
}, |
| 203 |
"filterBg": { |
| 204 |
"type": "string", |
| 205 |
"default": "#f1f5f9" |
| 206 |
}, |
| 207 |
"filterColor": { |
| 208 |
"type": "string", |
| 209 |
"default": "#64748b" |
| 210 |
}, |
| 211 |
"filterActiveBg": { |
| 212 |
"type": "string", |
| 213 |
"default": "#6366f1" |
| 214 |
}, |
| 215 |
"filterActiveColor": { |
| 216 |
"type": "string", |
| 217 |
"default": "#ffffff" |
| 218 |
}, |
| 219 |
"accentColor": { |
| 220 |
"type": "string", |
| 221 |
"default": "#6366f1" |
| 222 |
}, |
| 223 |
"titleFontSize": { |
| 224 |
"type": "number", |
| 225 |
"default": 24 |
| 226 |
}, |
| 227 |
"titleFontWeight": { |
| 228 |
"type": "number", |
| 229 |
"default": 700 |
| 230 |
}, |
| 231 |
"titleLineHeight": { |
| 232 |
"type": "number", |
| 233 |
"default": 1.2 |
| 234 |
}, |
| 235 |
"subtitleFontSize": { |
| 236 |
"type": "number", |
| 237 |
"default": 15 |
| 238 |
}, |
| 239 |
"subtitleFontWeight": { |
| 240 |
"type": "number", |
| 241 |
"default": 400 |
| 242 |
}, |
| 243 |
"subtitleLineHeight": { |
| 244 |
"type": "number", |
| 245 |
"default": 1.5 |
| 246 |
}, |
| 247 |
"nameFontSize": { |
| 248 |
"type": "number", |
| 249 |
"default": 14 |
| 250 |
}, |
| 251 |
"nameFontWeight": { |
| 252 |
"type": "number", |
| 253 |
"default": 600 |
| 254 |
}, |
| 255 |
"nameLineHeight": { |
| 256 |
"type": "number", |
| 257 |
"default": 1.3 |
| 258 |
}, |
| 259 |
"headingTypo": { |
| 260 |
"type": "object", |
| 261 |
"default": {} |
| 262 |
}, |
| 263 |
"subtextTypo": { |
| 264 |
"type": "object", |
| 265 |
"default": {} |
| 266 |
}, |
| 267 |
"nameTypo": { |
| 268 |
"type": "object", |
| 269 |
"default": {} |
| 270 |
} |
| 271 |
} |
| 272 |
} |
| 273 |
|