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 / app-screenshot / block.json

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

176 lines 4.5 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/app-screenshot",
5 "version": "1.0.0",
6 "title": "App Screenshot",
7 "category": "bkbg-business",
8 "icon": "desktop",
9 "description": "SaaS/app product screenshot section with annotated callout points, device frame, heading, subtext, and CTA. Perfect for software landing pages.",
10 "keywords": [
11 "app",
12 "screenshot",
13 "saas",
14 "software",
15 "product",
16 "annotated",
17 "callout"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-app-screenshot-editor",
21 "style": "bkbg-app-screenshot-style",
22 "viewScript": "bkbg-app-screenshot-frontend",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "eyebrow": {
32 "type": "string",
33 "default": "The Platform"
34 },
35 "heading": {
36 "type": "string",
37 "default": "Everything You Need in One Place"
38 },
39 "subtext": {
40 "type": "string",
41 "default": "A powerful, intuitive dashboard designed to help you move faster and make smarter decisions."
42 },
43 "screenshotUrl": {
44 "type": "string",
45 "default": ""
46 },
47 "screenshotId": {
48 "type": "number",
49 "default": 0
50 },
51 "callouts": {
52 "type": "array",
53 "default": [
54 {
55 "label": "Live Analytics",
56 "description": "Real-time data updated every second",
57 "x": 20,
58 "y": 25
59 },
60 {
61 "label": "Smart Automation",
62 "description": "Set rules once, let them run forever",
63 "x": 72,
64 "y": 55
65 },
66 {
67 "label": "Team Collaboration",
68 "description": "Comment, assign, and track together",
69 "x": 45,
70 "y": 75
71 }
72 ]
73 },
74 "showCallouts": {
75 "type": "boolean",
76 "default": true
77 },
78 "deviceFrame": {
79 "type": "string",
80 "default": "browser"
81 },
82 "layout": {
83 "type": "string",
84 "default": "centered"
85 },
86 "ctaLabel": {
87 "type": "string",
88 "default": "See It in Action"
89 },
90 "ctaUrl": {
91 "type": "string",
92 "default": "#"
93 },
94 "showCta": {
95 "type": "boolean",
96 "default": true
97 },
98 "bgColor": {
99 "type": "string",
100 "default": "#ffffff"
101 },
102 "headingColor": {
103 "type": "string",
104 "default": "#111827"
105 },
106 "subColor": {
107 "type": "string",
108 "default": "#6b7280"
109 },
110 "eyebrowColor": {
111 "type": "string",
112 "default": "#6366f1"
113 },
114 "frameColor": {
115 "type": "string",
116 "default": "#1e293b"
117 },
118 "calloutBg": {
119 "type": "string",
120 "default": "#6366f1"
121 },
122 "calloutColor": {
123 "type": "string",
124 "default": "#ffffff"
125 },
126 "accentColor": {
127 "type": "string",
128 "default": "#6366f1"
129 },
130 "ctaBg": {
131 "type": "string",
132 "default": "#6366f1"
133 },
134 "ctaColor": {
135 "type": "string",
136 "default": "#ffffff"
137 },
138 "maxWidth": {
139 "type": "number",
140 "default": 1200
141 },
142 "paddingTop": {
143 "type": "number",
144 "default": 80
145 },
146 "paddingBottom": {
147 "type": "number",
148 "default": 80
149 },
150 "eyebrowFontSize": {
151 "type": "number",
152 "default": 13
153 },
154 "headingFontSize": {
155 "type": "number",
156 "default": 36
157 },
158 "subtextFontSize": {
159 "type": "number",
160 "default": 18
161 },
162 "eyebrowTypo": {
163 "type": "object",
164 "default": {}
165 },
166 "headingTypo": {
167 "type": "object",
168 "default": {}
169 },
170 "subtextTypo": {
171 "type": "object",
172 "default": {}
173 }
174 }
175 }
176