- Add product tour video - Add new graphic design assets --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Etienne <etiennejouan@users.noreply.github.com>
20 lines
630 B
Plaintext
20 lines
630 B
Plaintext
export const VimeoEmbed = ({ videoId, title = 'Video' }) => (
|
|
<div style={{padding:'69.01% 0 0 0', position:'relative', margin: '32px 0px', borderRadius: '16px', overflow:'hidden', border:'2px solid black'}}>
|
|
<iframe
|
|
src={`https://player.vimeo.com/video/${videoId}?autoplay=1&loop=1&autopause=0&background=1&app_id=58479`}
|
|
frameBorder="0"
|
|
allow="autoplay; fullscreen; picture-in-picture; clipboard-write"
|
|
style={{
|
|
position:'absolute',
|
|
top:0,
|
|
left:0,
|
|
width:'100%',
|
|
height:'100%',
|
|
transform:'scale(1.1)',
|
|
}}
|
|
title={title}
|
|
/>
|
|
</div>
|
|
);
|
|
|