This commit is contained in:
2024-09-23 17:35:17 +05:30
parent 3af994c1a3
commit 322c92982d
24 changed files with 603 additions and 125 deletions

View File

@ -0,0 +1,8 @@
export function HomepageVideo() {
return (
<video width="1080" height="1920" controls preload="auto" loop autoPlay muted >
<source src="/videos/homepage-video.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
)
}