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 / card-cta-grid / block.json

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

178 lines 5.0 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/card-cta-grid",
5 "title": "Card CTA Grid",
6 "category": "bkbg-marketing",
7 "icon": "grid-view",
8 "description": "A grid of action cards — each with icon, title, description and link. Perfect for get-started, help, or navigation sections.",
9 "keywords": [
10 "cta",
11 "cards",
12 "grid",
13 "action",
14 "get started",
15 "navigation",
16 "hub"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-card-cta-grid-editor",
20 "style": "bkbg-card-cta-grid-style",
21 "attributes": {
22 "cards": {
23 "type": "array",
24 "default": [
25 {
26 "id": "c1",
27 "icon": "🚀",
28 "iconType": "custom-char",
29 "iconDashicon": "",
30 "iconImageUrl": "",
31 "title": "Get started",
32 "description": "Set up your account in minutes. No credit card required.",
33 "ctaLabel": "Create account →",
34 "ctaUrl": "#",
35 "ctaTarget": "_self",
36 "accentColor": "#6c3fb5"
37 },
38 {
39 "id": "c2",
40 "icon": "📖",
41 "iconType": "custom-char",
42 "iconDashicon": "",
43 "iconImageUrl": "",
44 "title": "Read the docs",
45 "description": "Dive into guides, API references, and code examples.",
46 "ctaLabel": "View docs →",
47 "ctaUrl": "#",
48 "ctaTarget": "_blank",
49 "accentColor": "#0ea5e9"
50 },
51 {
52 "id": "c3",
53 "icon": "💬",
54 "iconType": "custom-char",
55 "iconDashicon": "",
56 "iconImageUrl": "",
57 "title": "Join community",
58 "description": "Connect with thousands of users and the core team on Discord.",
59 "ctaLabel": "Join Discord →",
60 "ctaUrl": "#",
61 "ctaTarget": "_blank",
62 "accentColor": "#10b981"
63 },
64 {
65 "id": "c4",
66 "icon": "🎯",
67 "iconType": "custom-char",
68 "iconDashicon": "",
69 "iconImageUrl": "",
70 "title": "Book a demo",
71 "description": "See the product live with a personalized walkthrough.",
72 "ctaLabel": "Book demo →",
73 "ctaUrl": "#",
74 "ctaTarget": "_self",
75 "accentColor": "#f59e0b"
76 }
77 ],
78 "items": {
79 "type": "object"
80 }
81 },
82 "layout": {
83 "type": "string",
84 "default": "grid"
85 },
86 "columns": {
87 "type": "number",
88 "default": 4
89 },
90 "cardStyle": {
91 "type": "string",
92 "default": "border"
93 },
94 "gap": {
95 "type": "number",
96 "default": 20
97 },
98 "cardRadius": {
99 "type": "number",
100 "default": 16
101 },
102 "iconSize": {
103 "type": "number",
104 "default": 36
105 },
106 "showIcon": {
107 "type": "boolean",
108 "default": true
109 },
110 "showDesc": {
111 "type": "boolean",
112 "default": true
113 },
114 "titleSize": {
115 "type": "number",
116 "default": 17
117 },
118 "descSize": {
119 "type": "number",
120 "default": 14
121 },
122 "ctaSize": {
123 "type": "number",
124 "default": 14
125 },
126 "paddingTop": {
127 "type": "number",
128 "default": 0
129 },
130 "paddingBottom": {
131 "type": "number",
132 "default": 0
133 },
134 "sectionBg": {
135 "type": "string",
136 "default": ""
137 },
138 "cardBg": {
139 "type": "string",
140 "default": "#ffffff"
141 },
142 "cardBorder": {
143 "type": "string",
144 "default": "#e2e8f0"
145 },
146 "titleColor": {
147 "type": "string",
148 "default": "#0f172a"
149 },
150 "descColor": {
151 "type": "string",
152 "default": "#64748b"
153 },
154 "typoTitle": {
155 "type": "object",
156 "default": {}
157 },
158 "typoDesc": {
159 "type": "object",
160 "default": {}
161 },
162 "typoCta": {
163 "type": "object",
164 "default": {}
165 }
166 },
167 "supports": {
168 "html": false,
169 "align": [
170 "wide",
171 "full"
172 ],
173 "spacing": {
174 "margin": true
175 }
176 }
177 }
178