| 1 |
const citationBlocks = [ |
| 2 |
{ |
| 3 |
id: "citation-01", |
| 4 |
jsonBlocks: { |
| 5 |
blockName: "core/group", |
| 6 |
attrs: { |
| 7 |
align: "center", |
| 8 |
className: "citation-container citation-modern", |
| 9 |
style: { |
| 10 |
color: { |
| 11 |
background: "#ffffff", |
| 12 |
}, |
| 13 |
}, |
| 14 |
}, |
| 15 |
innerBlocks: [ |
| 16 |
{ |
| 17 |
blockName: "core/quote", |
| 18 |
attrs: { |
| 19 |
className: "citation-content", |
| 20 |
citation: "John Doe, CEO", |
| 21 |
}, |
| 22 |
innerBlocks: [ |
| 23 |
{ |
| 24 |
blockName: "core/paragraph", |
| 25 |
attrs: { |
| 26 |
content: |
| 27 |
"This platform has transformed how we handle our business operations. The efficiency and user-friendly interface are unmatched.", |
| 28 |
className: "ai-text-block", |
| 29 |
}, |
| 30 |
}, |
| 31 |
], |
| 32 |
}, |
| 33 |
], |
| 34 |
}, |
| 35 |
}, |
| 36 |
{ |
| 37 |
id: "citation-02", |
| 38 |
jsonBlocks: { |
| 39 |
blockName: "core/group", |
| 40 |
attrs: { |
| 41 |
align: "center", |
| 42 |
className: "citation-container citation-classic", |
| 43 |
style: { |
| 44 |
color: { |
| 45 |
background: "#f8f9fa", |
| 46 |
}, |
| 47 |
}, |
| 48 |
}, |
| 49 |
innerBlocks: [ |
| 50 |
{ |
| 51 |
blockName: "core/quote", |
| 52 |
attrs: { |
| 53 |
className: "citation-content", |
| 54 |
citation: "Jane Smith, Marketing Director", |
| 55 |
}, |
| 56 |
innerBlocks: [ |
| 57 |
{ |
| 58 |
blockName: "core/paragraph", |
| 59 |
attrs: { |
| 60 |
content: |
| 61 |
"The results we've achieved with this solution have exceeded our expectations. It's truly a game-changer for our industry.", |
| 62 |
className: "ai-text-block", |
| 63 |
}, |
| 64 |
}, |
| 65 |
], |
| 66 |
}, |
| 67 |
], |
| 68 |
}, |
| 69 |
}, |
| 70 |
{ |
| 71 |
id: "citation-03", |
| 72 |
jsonBlocks: { |
| 73 |
blockName: "core/group", |
| 74 |
attrs: { |
| 75 |
align: "center", |
| 76 |
className: "citation-container citation-minimal", |
| 77 |
style: { |
| 78 |
color: { |
| 79 |
background: "#ffffff", |
| 80 |
}, |
| 81 |
}, |
| 82 |
}, |
| 83 |
innerBlocks: [ |
| 84 |
{ |
| 85 |
blockName: "core/quote", |
| 86 |
attrs: { |
| 87 |
className: "citation-content", |
| 88 |
citation: "Michael Johnson, Product Manager", |
| 89 |
}, |
| 90 |
innerBlocks: [ |
| 91 |
{ |
| 92 |
blockName: "core/paragraph", |
| 93 |
attrs: { |
| 94 |
content: |
| 95 |
"Innovation at its finest. This tool has streamlined our workflow and boosted productivity across all departments.", |
| 96 |
className: "ai-text-block", |
| 97 |
}, |
| 98 |
}, |
| 99 |
], |
| 100 |
}, |
| 101 |
], |
| 102 |
}, |
| 103 |
}, |
| 104 |
]; |
| 105 |
|
| 106 |
export default citationBlocks; |
| 107 |
|