Almost all content on home page

This commit is contained in:
2024-09-23 23:05:32 +05:30
parent 322c92982d
commit fc237d8b9f
30 changed files with 699 additions and 376 deletions

View File

@ -1,8 +1,16 @@
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>
)
}
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>
);
}