mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { component$ } from '@builder.io/qwik'
|
|
|
|
export default component$(() => {
|
|
return (
|
|
<section class="relative">
|
|
<div class="max-w-6xl mx-auto px-4 sm:px-6">
|
|
<div class="py-12 md:py-20">
|
|
<video
|
|
style={'height:600px'}
|
|
width="100%"
|
|
height="400"
|
|
autoPlay
|
|
muted
|
|
loop
|
|
playsInline
|
|
>
|
|
<source
|
|
src="https://leifer-landing-page.s3.us-east-2.amazonaws.com/xbmcc-kx99h.webm"
|
|
type='video/mp4; codecs="hvc1"'
|
|
/>
|
|
|
|
<source
|
|
src="https://leifer-landing-page.s3.us-east-2.amazonaws.com/xbmcc-kx99h.webm"
|
|
type="video/webm"
|
|
/>
|
|
</video>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
})
|