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

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

95 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const coupletBlocks = [
2 {
3 id: "couplet-01",
4 jsonBlocks: {
5 blockName: "core/group",
6 attrs: {
7 align: "center",
8 className: "couplet-container",
9 style: {
10 color: {
11 background: "#ffffff",
12 },
13 },
14 },
15 innerBlocks: [
16 {
17 blockName: "core/group",
18 attrs: {
19 className: "couplet-content",
20 },
21 innerBlocks: [
22 {
23 blockName: "core/heading",
24 attrs: {
25 content: "Poetic Verses",
26 level: 2,
27 className: "couplet-title",
28 textAlign: "center",
29 },
30 },
31 {
32 blockName: "core/paragraph",
33 attrs: {
34 content: "A collection of timeless verses",
35 className: "couplet-subtitle ai-text-block",
36 textAlign: "center",
37 },
38 },
39 {
40 blockName: "core/group",
41 attrs: {
42 className: "couplet-verse",
43 },
44 innerBlocks: [
45 {
46 blockName: "core/paragraph",
47 attrs: {
48 content: "In the quiet of the night,",
49 className: "couplet-line ai-text-block",
50 textAlign: "center",
51 },
52 },
53 {
54 blockName: "core/paragraph",
55 attrs: {
56 content: "Where stars dance in delight,",
57 className: "couplet-line ai-text-block",
58 textAlign: "center",
59 },
60 },
61 {
62 blockName: "core/paragraph",
63 attrs: {
64 content: "Dreams take flight in the air,",
65 className: "couplet-line ai-text-block",
66 textAlign: "center",
67 },
68 },
69 {
70 blockName: "core/paragraph",
71 attrs: {
72 content: "With beauty beyond compare.",
73 className: "couplet-line ai-text-block",
74 textAlign: "center",
75 },
76 },
77 ],
78 },
79 {
80 blockName: "core/paragraph",
81 attrs: {
82 content: "— Anonymous",
83 className: "couplet-author ai-text-block",
84 textAlign: "center",
85 },
86 },
87 ],
88 },
89 ],
90 },
91 },
92 ];
93
94 export default coupletBlocks;
95