| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/resource-hub", |
| 5 |
"version": "1.0.0", |
| 6 |
"title": "Resource Hub", |
| 7 |
"category": "bkbg-business", |
| 8 |
"icon": "book-alt", |
| 9 |
"description": "Organized resource library with category filter pills, resource cards (guide, video, template, tool), and optional featured resource. For content marketing and lead gen pages.", |
| 10 |
"keywords": [ |
| 11 |
"resource", |
| 12 |
"library", |
| 13 |
"hub", |
| 14 |
"guide", |
| 15 |
"template", |
| 16 |
"download", |
| 17 |
"content", |
| 18 |
"filter" |
| 19 |
], |
| 20 |
"textdomain": "blockenberg", |
| 21 |
"editorScript": "bkbg-resource-hub-editor", |
| 22 |
"style": "bkbg-resource-hub-style", |
| 23 |
"viewScript": "bkbg-resource-hub-frontend", |
| 24 |
"supports": { |
| 25 |
"html": false, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"eyebrow": { |
| 33 |
"type": "string", |
| 34 |
"default": "Free Resources" |
| 35 |
}, |
| 36 |
"heading": { |
| 37 |
"type": "string", |
| 38 |
"default": "Level Up Your Skills" |
| 39 |
}, |
| 40 |
"subtext": { |
| 41 |
"type": "string", |
| 42 |
"default": "Guides, templates, and tools to help you grow faster — all completely free." |
| 43 |
}, |
| 44 |
"resources": { |
| 45 |
"type": "array", |
| 46 |
"default": [ |
| 47 |
{ |
| 48 |
"title": "The Ultimate SEO Checklist", |
| 49 |
"description": "A comprehensive 50-point SEO audit checklist for 2024.", |
| 50 |
"category": "Guides", |
| 51 |
"type": "guide", |
| 52 |
"imageUrl": "", |
| 53 |
"url": "#", |
| 54 |
"featured": true |
| 55 |
}, |
| 56 |
{ |
| 57 |
"title": "Email Marketing Templates", |
| 58 |
"description": "10 proven email sequences for onboarding, sales, and retention.", |
| 59 |
"category": "Templates", |
| 60 |
"type": "template", |
| 61 |
"imageUrl": "", |
| 62 |
"url": "#", |
| 63 |
"featured": false |
| 64 |
}, |
| 65 |
{ |
| 66 |
"title": "Content Calendar Generator", |
| 67 |
"description": "Free tool to plan 3 months of content in under 10 minutes.", |
| 68 |
"category": "Tools", |
| 69 |
"type": "tool", |
| 70 |
"imageUrl": "", |
| 71 |
"url": "#", |
| 72 |
"featured": false |
| 73 |
}, |
| 74 |
{ |
| 75 |
"title": "Pricing Strategy Masterclass", |
| 76 |
"description": "60-minute video breaking down SaaS pricing psychology.", |
| 77 |
"category": "Videos", |
| 78 |
"type": "video", |
| 79 |
"imageUrl": "", |
| 80 |
"url": "#", |
| 81 |
"featured": false |
| 82 |
}, |
| 83 |
{ |
| 84 |
"title": "Brand Voice Workbook", |
| 85 |
"description": "Define your brand personality with this guided PDF workbook.", |
| 86 |
"category": "Guides", |
| 87 |
"type": "guide", |
| 88 |
"imageUrl": "", |
| 89 |
"url": "#", |
| 90 |
"featured": false |
| 91 |
}, |
| 92 |
{ |
| 93 |
"title": "Analytics Dashboard Template", |
| 94 |
"description": "Google Sheets template pre-built with charts and KPIs.", |
| 95 |
"category": "Templates", |
| 96 |
"type": "template", |
| 97 |
"imageUrl": "", |
| 98 |
"url": "#", |
| 99 |
"featured": false |
| 100 |
} |
| 101 |
] |
| 102 |
}, |
| 103 |
"showFilter": { |
| 104 |
"type": "boolean", |
| 105 |
"default": true |
| 106 |
}, |
| 107 |
"layout": { |
| 108 |
"type": "string", |
| 109 |
"default": "grid" |
| 110 |
}, |
| 111 |
"columns": { |
| 112 |
"type": "number", |
| 113 |
"default": 3 |
| 114 |
}, |
| 115 |
"showType": { |
| 116 |
"type": "boolean", |
| 117 |
"default": true |
| 118 |
}, |
| 119 |
"ctaLabel": { |
| 120 |
"type": "string", |
| 121 |
"default": "Download Free" |
| 122 |
}, |
| 123 |
"bgColor": { |
| 124 |
"type": "string", |
| 125 |
"default": "#ffffff" |
| 126 |
}, |
| 127 |
"headingColor": { |
| 128 |
"type": "string", |
| 129 |
"default": "#111827" |
| 130 |
}, |
| 131 |
"subColor": { |
| 132 |
"type": "string", |
| 133 |
"default": "#6b7280" |
| 134 |
}, |
| 135 |
"eyebrowColor": { |
| 136 |
"type": "string", |
| 137 |
"default": "#6366f1" |
| 138 |
}, |
| 139 |
"cardBg": { |
| 140 |
"type": "string", |
| 141 |
"default": "#f8fafc" |
| 142 |
}, |
| 143 |
"cardBorder": { |
| 144 |
"type": "string", |
| 145 |
"default": "#e2e8f0" |
| 146 |
}, |
| 147 |
"titleColor": { |
| 148 |
"type": "string", |
| 149 |
"default": "#111827" |
| 150 |
}, |
| 151 |
"descColor": { |
| 152 |
"type": "string", |
| 153 |
"default": "#6b7280" |
| 154 |
}, |
| 155 |
"filterBg": { |
| 156 |
"type": "string", |
| 157 |
"default": "#f1f5f9" |
| 158 |
}, |
| 159 |
"filterColor": { |
| 160 |
"type": "string", |
| 161 |
"default": "#6b7280" |
| 162 |
}, |
| 163 |
"filterActiveBg": { |
| 164 |
"type": "string", |
| 165 |
"default": "#6366f1" |
| 166 |
}, |
| 167 |
"filterActiveColor": { |
| 168 |
"type": "string", |
| 169 |
"default": "#ffffff" |
| 170 |
}, |
| 171 |
"ctaBg": { |
| 172 |
"type": "string", |
| 173 |
"default": "#6366f1" |
| 174 |
}, |
| 175 |
"ctaColor": { |
| 176 |
"type": "string", |
| 177 |
"default": "#ffffff" |
| 178 |
}, |
| 179 |
"accentColor": { |
| 180 |
"type": "string", |
| 181 |
"default": "#6366f1" |
| 182 |
}, |
| 183 |
"maxWidth": { |
| 184 |
"type": "number", |
| 185 |
"default": 1200 |
| 186 |
}, |
| 187 |
"paddingTop": { |
| 188 |
"type": "number", |
| 189 |
"default": 80 |
| 190 |
}, |
| 191 |
"paddingBottom": { |
| 192 |
"type": "number", |
| 193 |
"default": 80 |
| 194 |
}, |
| 195 |
"headingFontSize": { |
| 196 |
"type": "number", |
| 197 |
"default": 34 |
| 198 |
}, |
| 199 |
"headingFontWeight": { |
| 200 |
"type": "number", |
| 201 |
"default": 700 |
| 202 |
}, |
| 203 |
"headingLineHeight": { |
| 204 |
"type": "number", |
| 205 |
"default": 1.2 |
| 206 |
}, |
| 207 |
"subtextFontSize": { |
| 208 |
"type": "number", |
| 209 |
"default": 17 |
| 210 |
}, |
| 211 |
"subtextFontWeight": { |
| 212 |
"type": "number", |
| 213 |
"default": 400 |
| 214 |
}, |
| 215 |
"subtextLineHeight": { |
| 216 |
"type": "number", |
| 217 |
"default": 1.5 |
| 218 |
}, |
| 219 |
"headingTypo": { |
| 220 |
"type": "object", |
| 221 |
"default": {} |
| 222 |
}, |
| 223 |
"subtextTypo": { |
| 224 |
"type": "object", |
| 225 |
"default": {} |
| 226 |
} |
| 227 |
} |
| 228 |
} |
| 229 |
|