File size: 294 Bytes
5a264f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
  )
}