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 / dark-hero / block.json

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

214 lines 5.2 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/dark-hero",
5 "title": "Dark Hero",
6 "category": "bkbg-layout",
7 "icon": "admin-appearance",
8 "description": "Dark glassmorphism hero for AI, SaaS and tech sites. Features glow effects, gradient text, optional floating stat badges, badge pill, and rich button controls.",
9 "keywords": [
10 "hero",
11 "dark",
12 "glass",
13 "glow",
14 "ai",
15 "saas",
16 "gradient",
17 "tech"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-dark-hero-editor",
21 "style": "bkbg-dark-hero-style",
22 "attributes": {
23 "showBadge": {
24 "type": "boolean",
25 "default": true
26 },
27 "badgeText": {
28 "type": "string",
29 "default": "✦ Introducing v2.0"
30 },
31 "badgeStyle": {
32 "type": "string",
33 "default": "glow"
34 },
35 "headline": {
36 "type": "string",
37 "default": "Build Something Extraordinary"
38 },
39 "headlineStyle": {
40 "type": "string",
41 "default": "gradient"
42 },
43 "gradientFrom": {
44 "type": "string",
45 "default": "#ffffff"
46 },
47 "gradientTo": {
48 "type": "string",
49 "default": "#a78bfa"
50 },
51 "gradientAngle": {
52 "type": "number",
53 "default": 135
54 },
55 "subtitle": {
56 "type": "string",
57 "default": "The AI-powered platform that turns your ideas into production-ready software in minutes, not months."
58 },
59 "showSubtitle": {
60 "type": "boolean",
61 "default": true
62 },
63 "primaryLabel": {
64 "type": "string",
65 "default": "Start for free"
66 },
67 "primaryUrl": {
68 "type": "string",
69 "default": "#"
70 },
71 "primaryTarget": {
72 "type": "string",
73 "default": "_self"
74 },
75 "showSecondary": {
76 "type": "boolean",
77 "default": true
78 },
79 "secondaryLabel": {
80 "type": "string",
81 "default": "Watch demo"
82 },
83 "secondaryUrl": {
84 "type": "string",
85 "default": "#"
86 },
87 "secondaryTarget": {
88 "type": "string",
89 "default": "_self"
90 },
91 "showStats": {
92 "type": "boolean",
93 "default": true
94 },
95 "stats": {
96 "type": "array",
97 "default": [
98 {
99 "id": "s1",
100 "value": "50k+",
101 "label": "Active users"
102 },
103 {
104 "id": "s2",
105 "value": "4.9�
106 ",
107 "label": "App rating"
108 },
109 {
110 "id": "s3",
111 "value": "99.9%",
112 "label": "Uptime SLA"
113 }
114 ],
115 "items": {
116 "type": "object"
117 }
118 },
119 "bgStyle": {
120 "type": "string",
121 "default": "dark-purple"
122 },
123 "customBg": {
124 "type": "string",
125 "default": "#0a0a0f"
126 },
127 "showGlow": {
128 "type": "boolean",
129 "default": true
130 },
131 "glowColor": {
132 "type": "string",
133 "default": "#6c3fb5"
134 },
135 "glowSize": {
136 "type": "number",
137 "default": 600
138 },
139 "showGrid": {
140 "type": "boolean",
141 "default": true
142 },
143 "showNoise": {
144 "type": "boolean",
145 "default": false
146 },
147 "textAlign": {
148 "type": "string",
149 "default": "center"
150 },
151 "minHeight": {
152 "type": "number",
153 "default": 620
154 },
155 "contentMaxWidth": {
156 "type": "number",
157 "default": 800
158 },
159 "headingSize": {
160 "type": "number",
161 "default": 64
162 },
163 "subtitleSize": {
164 "type": "number",
165 "default": 19
166 },
167 "typoHeading": {
168 "type": "object",
169 "default": {}
170 },
171 "typoSubtitle": {
172 "type": "object",
173 "default": {}
174 },
175 "paddingTop": {
176 "type": "number",
177 "default": 96
178 },
179 "paddingBottom": {
180 "type": "number",
181 "default": 96
182 },
183 "btnRadius": {
184 "type": "number",
185 "default": 8
186 },
187 "subtitleColor": {
188 "type": "string",
189 "default": "rgba(255,255,255,0.65)"
190 },
191 "primaryBg": {
192 "type": "string",
193 "default": "#7c3aed"
194 },
195 "primaryColor": {
196 "type": "string",
197 "default": "#ffffff"
198 },
199 "statsColor": {
200 "type": "string",
201 "default": "rgba(255,255,255,0.55)"
202 }
203 },
204 "supports": {
205 "html": false,
206 "align": [
207 "full"
208 ],
209 "spacing": {
210 "margin": true
211 }
212 }
213 }
214