| 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 |
|