const codeBlocks = [ { id: "code-01", jsonBlocks: { blockName: "core/group", attrs: { align: "center", className: "code-container", style: { color: { background: "#ffffff", }, }, }, innerBlocks: [ { blockName: "core/heading", attrs: { content: "Code Example", level: 2, className: "code-title", textAlign: "center", }, }, { blockName: "core/paragraph", attrs: { content: "Here's a sample of our code implementation", className: "code-description ai-text-block", align: "center", }, }, { blockName: "core/code", attrs: { className: "code-block", content: `function example() { const greeting = "Hello World"; console.log(greeting); return greeting; }`, }, }, ], }, }, ]; export default codeBlocks;