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