Spaces:
Running
Running
| export default function VideoBackground() { | |
| return ( | |
| <div className="video-bg-wrap"> | |
| <video | |
| className="video-bg" | |
| src="/bg-video.mp4" | |
| autoPlay | |
| muted | |
| loop | |
| playsInline | |
| /> | |
| <div className="video-bg-overlay" /> | |
| </div> | |
| ) | |
| } | |