const audioBlocks = [ { id: "audio-01", jsonBlocks: { blockName: "core/group", attrs: { align: "center", className: "audio-container", style: { color: { background: "#ffffff", }, }, }, innerBlocks: [ { blockName: "core/heading", attrs: { content: "Listen to Our Audio", level: 2, className: "audio-title", textAlign: "center", }, }, { blockName: "core/paragraph", attrs: { content: "Enjoy our latest audio content", className: "audio-description ai-text-block", align: "center", }, }, { blockName: "core/audio", attrs: { className: "audio-player", controls: true, autoplay: false, loop: false, preload: "metadata", }, }, { blockName: "core/paragraph", attrs: { content: "Click the play button to start listening", className: "audio-info ai-text-block", align: "center", }, }, ], }, }, ]; export default audioBlocks;