35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import { Button } from '@/components/Button'
|
|
import { Container } from '@/components/Container'
|
|
import React from 'react'
|
|
import { H1, H2, H3, H4, P, PS, PXS, PXXS } from '@/components/text'
|
|
|
|
|
|
|
|
const FFVid = () => {
|
|
return (
|
|
<Container>
|
|
<div className="bg-transparent mx-auto max-w-7xl md:text-center pt-12 lg:pt-24">
|
|
<H2 className="">
|
|
A Glimpse Into Private Retreats at VEDA
|
|
</H2>
|
|
<P className="mt-2">
|
|
We were honored to welcome FreeFlow Retreats aboard VEDA, where guests experienced the perfect blend of wellness, culture, and tranquility on the Nile. Watch the video below for a glimpse of how your own retreat could unfold in this unique setting.
|
|
</P>
|
|
</div>
|
|
<div className="video-container mt-12 bg-transparent">
|
|
<iframe
|
|
src="https://player.vimeo.com/video/725069296?loop=1&muted=1"
|
|
width="100%"
|
|
height="300"
|
|
frameBorder="0"
|
|
allow="autoplay; fullscreen; picture-in-picture"
|
|
allowFullScreen
|
|
className="rounded-lg w-full max-w-6xl mx-auto sm:h-[400px] lg:h-[600px]"
|
|
></iframe>
|
|
</div>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default FFVid;
|