Files
kakawa/src/components/homepage-video.tsx

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>
);
}