PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / 2.7.2
AI Builder – Generate pages, blocks, images & translate with AI v2.7.2
2.7.10 2.7.9 2.7.8 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.3.10 All 122 releases
ai-builder / assets / JSON-Blocks / cta.js

cta.js in AI Builder – Generate pages, blocks, images & translate with AI 2.7.2, at assets/JSON-Blocks/cta.js

208 lines 5.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const ctaBlocks = [
2 {
3 id: "cta-01",
4 jsonBlocks: {
5 blockName: "core/group",
6 attrs: {
7 align: "full",
8 className: "cta-container",
9 },
10 innerBlocks: [
11 {
12 blockName: "core/group",
13 attrs: {
14 className: "cta-content",
15 },
16 innerBlocks: [
17 {
18 blockName: "core/heading",
19 attrs: {
20 content: "Ready to Transform Your Space?",
21 level: 2,
22 className: "cta-title",
23 },
24 },
25 {
26 blockName: "core/paragraph",
27 attrs: {
28 content:
29 "Join thousands of satisfied customers who trust our cleaning services.",
30 className: "cta-text ai-text-block",
31 },
32 },
33 {
34 blockName: "core/buttons",
35 attrs: {
36 className: "cta-buttons",
37 },
38 innerBlocks: [
39 {
40 blockName: "core/button",
41 attrs: {
42 text: "Get Started",
43 className: "cta-button cta-button-primary",
44 linkTarget: "_blank",
45 style: {
46 color: {
47 background: "#2563eb",
48 },
49 },
50 },
51 },
52 ],
53 },
54 ],
55 },
56 ],
57 },
58 },
59 {
60 id: "cta-02",
61 jsonBlocks: {
62 blockName: "core/group",
63 attrs: {
64 align: "full",
65 className: "cta-container",
66 },
67 innerBlocks: [
68 {
69 blockName: "core/group",
70 attrs: {
71 className: "cta-content",
72 },
73 innerBlocks: [
74 {
75 blockName: "core/heading",
76 attrs: {
77 content: "Special Offer: 20% Off First Clean",
78 level: 2,
79 className: "cta-title",
80 },
81 },
82 {
83 blockName: "core/paragraph",
84 attrs: {
85 content:
86 "Limited time offer for new customers. Book now and experience the difference.",
87 className: "cta-text ai-text-block",
88 },
89 },
90 {
91 blockName: "core/buttons",
92 attrs: {
93 className: "cta-buttons",
94 },
95 innerBlocks: [
96 {
97 blockName: "core/button",
98 attrs: {
99 text: "Claim Offer",
100 className: "cta-button cta-button-primary",
101 style: {
102 color: {
103 background: "#2563eb",
104 },
105 },
106 },
107 },
108 {
109 blockName: "core/button",
110 attrs: {
111 text: "Learn More",
112 className: "cta-button cta-button-secondary",
113 },
114 },
115 ],
116 },
117 ],
118 },
119 ],
120 },
121 },
122 {
123 id: "cta-03",
124 jsonBlocks: {
125 blockName: "core/group",
126 attrs: {
127 align: "full",
128 className: "cta-container",
129 },
130 innerBlocks: [
131 {
132 blockName: "core/columns",
133 attrs: {
134 align: "full",
135 },
136 innerBlocks: [
137 {
138 blockName: "core/column",
139 attrs: {},
140 innerBlocks: [
141 {
142 blockName: "core/group",
143 attrs: {
144 className: "cta-content",
145 },
146 innerBlocks: [
147 {
148 blockName: "core/heading",
149 attrs: {
150 content: "Professional Cleaning Services",
151 level: 2,
152 className: "cta-title",
153 },
154 },
155 {
156 blockName: "core/paragraph",
157 attrs: {
158 content:
159 "Our expert team delivers exceptional results every time.",
160 className: "cta-text ai-text-block",
161 },
162 },
163 {
164 blockName: "core/buttons",
165 attrs: {
166 className: "cta-buttons",
167 },
168 innerBlocks: [
169 {
170 blockName: "core/button",
171 attrs: {
172 text: "Book Now",
173 className: "cta-button cta-button-primary",
174 style: {
175 color: {
176 background: "#2563eb",
177 },
178 },
179 },
180 },
181 ],
182 },
183 ],
184 },
185 ],
186 },
187 {
188 blockName: "core/column",
189 attrs: {},
190 innerBlocks: [
191 {
192 blockName: "core/image",
193 attrs: {
194 className: "ai-image-block",
195 imageUrl: "",
196 },
197 },
198 ],
199 },
200 ],
201 },
202 ],
203 },
204 },
205 ];
206
207 export default ctaBlocks;
208