import * as React from "react"; import { cn } from "@/lib/utils"; export type VideoBackgroundProps = { src?: string; poster?: string; overlay?: "light" | "medium" | "dark"; children?: React.ReactNode; className?: string; }; export function VideoBackground({ src, poster, overlay = "medium", children, className, }: VideoBackgroundProps) { const overlayClass = { light: "bg-black/25", medium: "bg-black/50", dark: "bg-black/70", }[overlay]; return (