const citationBlocks = [ { id: "citation-01", jsonBlocks: { blockName: "core/group", attrs: { align: "center", className: "citation-container citation-modern", style: { color: { background: "#ffffff", }, }, }, innerBlocks: [ { blockName: "core/quote", attrs: { className: "citation-content", citation: "John Doe, CEO", }, innerBlocks: [ { blockName: "core/paragraph", attrs: { content: "This platform has transformed how we handle our business operations. The efficiency and user-friendly interface are unmatched.", className: "ai-text-block", }, }, ], }, ], }, }, { id: "citation-02", jsonBlocks: { blockName: "core/group", attrs: { align: "center", className: "citation-container citation-classic", style: { color: { background: "#f8f9fa", }, }, }, innerBlocks: [ { blockName: "core/quote", attrs: { className: "citation-content", citation: "Jane Smith, Marketing Director", }, innerBlocks: [ { blockName: "core/paragraph", attrs: { content: "The results we've achieved with this solution have exceeded our expectations. It's truly a game-changer for our industry.", className: "ai-text-block", }, }, ], }, ], }, }, { id: "citation-03", jsonBlocks: { blockName: "core/group", attrs: { align: "center", className: "citation-container citation-minimal", style: { color: { background: "#ffffff", }, }, }, innerBlocks: [ { blockName: "core/quote", attrs: { className: "citation-content", citation: "Michael Johnson, Product Manager", }, innerBlocks: [ { blockName: "core/paragraph", attrs: { content: "Innovation at its finest. This tool has streamlined our workflow and boosted productivity across all departments.", className: "ai-text-block", }, }, ], }, ], }, }, ]; export default citationBlocks;