15 lines
412 B
Plaintext
15 lines
412 B
Plaintext
---
|
|
import VideoPlayer from "../components/VideoPlayer.astro";
|
|
import ComponentLayout from "../layouts/ComponentLayout.astro";
|
|
---
|
|
|
|
<ComponentLayout>
|
|
<VideoPlayer
|
|
videoUrl="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/SubaruOutbackOnStreetAndDirt.mp4"
|
|
videoType="video/mp4"
|
|
class="wr:w-[500px]"
|
|
muted={false}
|
|
volume={0.7}
|
|
/>
|
|
</ComponentLayout>
|