PluginProbe
AI Builder – Generate pages, blocks, images & translate with AI / 2.1.7
AI Builder – Generate pages, blocks, images & translate with AI v2.1.7
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 / cards.js

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

181 lines 5.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const cards = [
2 {
3 id: "card-01",
4 jsonBlocks: {
5 blockName: "core/group",
6 attrs: {
7 align: "full",
8 className: "card-list",
9 style: {
10 spacing: {
11 margin: {
12 top: "40px",
13 bottom: "40px",
14 },
15 padding: {
16 top: "20px",
17 bottom: "20px",
18 left: "10px",
19 right: "10px",
20 },
21 },
22 },
23 },
24 innerBlocks: [
25 {
26 blockName: "core/columns",
27 attrs: {
28 align: "full",
29 className: "card-columns",
30 },
31 innerBlocks: [
32 {
33 blockName: "core/column",
34 attrs: {
35 className: "card-item",
36 },
37 innerBlocks: [
38 {
39 blockName: "core/heading",
40 attrs: {
41 content: "Your Account",
42 level: 3,
43 className: "card-title",
44 style: {
45 typography: {
46 fontStyle: "italic",
47 fontWeight: "700",
48 fontSize: "32px",
49 color: "#001871",
50 },
51 },
52 },
53 },
54 {
55 blockName: "core/paragraph",
56 attrs: {
57 content:
58 "Manage your account easily. Access your settings and personalize your experience in just a few clicks.",
59 className: "card-text ai-text-block",
60 },
61 },
62 {
63 blockName: "core/button",
64 attrs: {
65 className: "card-link",
66 text: "Learn More",
67 style: {
68 color: {
69 text: "#ff9900",
70 },
71 typography: {
72 fontWeight: "700",
73 },
74 },
75 },
76 },
77 ],
78 },
79 {
80 blockName: "core/column",
81 attrs: {
82 className: "card-item",
83 },
84 innerBlocks: [
85 {
86 blockName: "core/heading",
87 attrs: {
88 content: "Create a Journey",
89 level: 3,
90 className: "card-title",
91 style: {
92 typography: {
93 fontStyle: "italic",
94 fontWeight: "700",
95 fontSize: "32px",
96 color: "#001871",
97 },
98 },
99 },
100 },
101 {
102 blockName: "core/paragraph",
103 attrs: {
104 content:
105 "Start a new project or journey. Choose your options and get started quickly with our intuitive interface.",
106 className: "card-text ai-text-block",
107 },
108 },
109 {
110 blockName: "core/button",
111 attrs: {
112 className: "card-link",
113 text: "Get Started",
114 style: {
115 color: {
116 text: "#ff9900",
117 },
118 typography: {
119 fontWeight: "700",
120 },
121 },
122 },
123 },
124 ],
125 },
126 {
127 blockName: "core/column",
128 attrs: {
129 className: "card-item",
130 },
131 innerBlocks: [
132 {
133 blockName: "core/heading",
134 attrs: {
135 content: "Quick Start",
136 level: 3,
137 className: "card-title",
138 style: {
139 typography: {
140 fontStyle: "italic",
141 fontWeight: "700",
142 fontSize: "32px",
143 color: "#001871",
144 },
145 },
146 },
147 },
148 {
149 blockName: "core/paragraph",
150 attrs: {
151 content:
152 "Discover how easy it is to begin. Follow our simple steps and unlock all features instantly.",
153 className: "card-text ai-text-block",
154 },
155 },
156 {
157 blockName: "core/button",
158 attrs: {
159 className: "card-link",
160 text: "See How",
161 style: {
162 color: {
163 text: "#ff9900",
164 },
165 typography: {
166 fontWeight: "700",
167 },
168 },
169 },
170 },
171 ],
172 },
173 ],
174 },
175 ],
176 },
177 },
178 ];
179
180 export default cards;
181