--- interface Props { videoPath: string; videoType?: string; controls?: boolean; autoPlay?: boolean; loop?: boolean; playsInline?: boolean; } const { videoPath, videoType = "video/mp4", controls = true, autoPlay = false, loop = false, playsInline = false, } = Astro.props; ---