This commit is contained in:
2025-09-01 16:26:55 +02:00
parent 3ae65eb1e4
commit 999cb3a6c2

View File

@@ -7,34 +7,28 @@ import { H1, H2, H3, H4, P, PS, PXS, PXXS } from '@/components/text'
const FFVid = () => { const FFVid = () => {
return ( return (
<section
id="testimonials"
aria-label="What our customers are saying"
className="bg-transparent py-16"
>
<Container> <Container>
<div className="mx-auto max-w-5xl md:text-center"> <div className="bg-transparent mx-auto max-w-7xl md:text-center pt-12 lg:pt-24">
<H2 className=""> <H2 className="">
A Glimpse Into Private Retreats at VEDA A Glimpse Into Private Retreats at VEDA
</H2> </H2>
<P className="mt-4 mb-8 text-lg pb-6 tracking-tight text-slate-700"> <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. 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> </P>
</div> </div>
<div className="video-container"> <div className="video-container mt-12 bg-transparent">
<iframe <iframe
src="https://player.vimeo.com/video/725069296?loop=1&muted=1" src="https://player.vimeo.com/video/725069296?loop=1&muted=1"
width="100%" width="100%"
height="600" height="300"
frameBorder="0" frameBorder="0"
allow="autoplay; fullscreen; picture-in-picture" allow="autoplay; fullscreen; picture-in-picture"
allowFullScreen allowFullScreen
className="rounded-lg w-full max-w-7xl mx-auto" className="rounded-lg w-full max-w-6xl mx-auto sm:h-[400px] lg:h-[600px]"
></iframe> ></iframe>
</div> </div>
</Container> </Container>
</section>
); );
}; };
export default FFVid; export default FFVid;