17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
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>
|
|
);
|
|
}
|