import type { Block } from 'payload' export const VideoBlock: Block = { slug: 'videoBlock', fields: [ { name: 'videoUrl', type: 'text', required: true, label: 'YouTube або Vimeo URL' }, { name: 'caption', type: 'text' }, { name: 'autoplay', type: 'checkbox', defaultValue: false }, ], }