// Drop-in stand-in for the FadingVideo component.
// Same positioning contract; swap this for the real
// later without touching any layout.
const VideoPlaceholder = ({
variant = "hero", // "hero" | "capabilities"
label = "BACKGROUND VIDEO",
className = "",
style = {},
}) => {
// Hero: 120% scale, top-aligned (matches spec).
// Capabilities: full-bleed inset-0.
const isHero = variant === "hero";
const baseClass = isHero
? "absolute left-1/2 top-0 -translate-x-1/2 z-0"
: "absolute inset-0 z-0";
const baseStyle = isHero
? { width: "120%", height: "120%" }
: { width: "100%", height: "100%" };
return (
{label}
);
};
window.VideoPlaceholder = VideoPlaceholder;