ok
This commit is contained in:
@@ -6,17 +6,21 @@ import { Community } from '@/components/Community'
|
||||
import { Retreats } from '@/components/Retreats'
|
||||
import { Events } from '@/components/Events'
|
||||
import { Nomads } from '@/components/Nomads'
|
||||
import { Experience } from '@/components/Exp2'
|
||||
import FFVid from '@/components/FreeflowVideo'
|
||||
|
||||
export default function Itinerary() {
|
||||
export default function Experiences() {
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
<main>
|
||||
<Exp/>
|
||||
<Community />
|
||||
<Experience/>
|
||||
<Community />
|
||||
<Retreats />
|
||||
<Events />
|
||||
<Nomads />
|
||||
<FFVid/>
|
||||
<Exp/>
|
||||
<CallToAction3 />
|
||||
</main>
|
||||
<Footer />
|
||||
|
@@ -17,7 +17,7 @@ import NewFeatures2 from '@/components/NewFeatures2'
|
||||
import Activities from '@/components/Activities'
|
||||
import Boats from '@/components/Boats'
|
||||
import Carousel from '@/components/Carousel'
|
||||
import CNNVIDEO from '@/components/CNNVIDEO'
|
||||
import CnnVideo from '@/components/CnnVideo'
|
||||
|
||||
|
||||
export default function Home() {
|
||||
@@ -34,7 +34,7 @@ export default function Home() {
|
||||
<CallToAction2 />
|
||||
<Carousel />
|
||||
<Route />
|
||||
<CNNVIDEO />
|
||||
<CnnVideo />
|
||||
<Testimonials />
|
||||
<CallToAction3 />
|
||||
</main>
|
||||
|
@@ -4,7 +4,7 @@ import { Container } from '@/components/Container'
|
||||
import React from 'react'
|
||||
|
||||
|
||||
const CNNVIDEO = () => {
|
||||
const CnnVideo = () => {
|
||||
return (
|
||||
<section
|
||||
id="testimonials"
|
||||
@@ -21,14 +21,19 @@ const CNNVIDEO = () => {
|
||||
</p>
|
||||
</div>
|
||||
<div className="video-container">
|
||||
<video className="video-player" autoPlay muted loop>
|
||||
<source src="/videos/veda_cnn.mp4" type="video/mp4" />
|
||||
Your browser does not support the video tag.
|
||||
</video>
|
||||
<iframe
|
||||
src="https://player.vimeo.com/video/371621672?autoplay=1&loop=1&muted=1"
|
||||
width="100%"
|
||||
height="600"
|
||||
frameBorder="0"
|
||||
allow="autoplay; fullscreen; picture-in-picture"
|
||||
allowFullScreen
|
||||
className="rounded-lg w-full max-w-6xl mx-auto"
|
||||
></iframe>
|
||||
</div>
|
||||
</Container>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default CNNVIDEO;
|
||||
export default CnnVideo;
|
@@ -10,23 +10,13 @@ const features = [
|
||||
export default function Example() {
|
||||
return (
|
||||
<div className="bg-creme-600">
|
||||
<div aria-hidden="true" className="relative">
|
||||
<img
|
||||
alt=""
|
||||
src="/images/exp.jpg"
|
||||
className="h-96 w-full object-cover object-center"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-creme-600" />
|
||||
</div>
|
||||
|
||||
<div className="relative mx-auto -mt-12 max-w-7xl px-4 pb-16 sm:px-6 sm:pb-24 lg:px-8">
|
||||
<div className="mt-24 relative mx-auto max-w-7xl px-4 pb-16 sm:px-6 sm:pb-24 lg:px-8">
|
||||
<div className="mx-auto max-w-2xl text-center lg:max-w-4xl">
|
||||
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">VEDA EXPERIENCES</h2>
|
||||
<p className="mt-4 text-gray-900">
|
||||
Join us for transformative journeys of wellness, creativity, and connection on the tranquil and sacred Nile.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<dl className="mx-auto mt-16 grid max-w-2xl grid-cols-1 gap-x-6 gap-y-10 sm:grid-cols-2 sm:gap-y-16 lg:max-w-none lg:grid-cols-3 lg:gap-x-8">
|
||||
{features.map((feature) => (
|
||||
<div key={feature.name} className="border-t border-gray-200 pt-4">
|
||||
|
24
src/components/Exp2.jsx
Normal file
24
src/components/Exp2.jsx
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
|
||||
export function Experience() {
|
||||
return (
|
||||
<div className="bg-creme-600">
|
||||
<div aria-hidden="true" className="relative">
|
||||
<img
|
||||
alt=""
|
||||
src="/images/exp.jpg"
|
||||
className="h-96 w-full object-cover object-center"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-creme-600" />
|
||||
</div>
|
||||
<div className="relative mx-auto -mt-12 max-w-7xl px-4 pb-16 sm:px-6 sm:pb-24 lg:px-8">
|
||||
<div className="mx-auto max-w-2xl text-center lg:max-w-4xl">
|
||||
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">VEDA Programs</h2>
|
||||
<p className="mt-4 text-gray-900">
|
||||
Join us for transformative journeys of wellness, creativity, and connection on the tranquil and sacred Nile.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
39
src/components/FreeflowVideo.jsx
Normal file
39
src/components/FreeflowVideo.jsx
Normal file
@@ -0,0 +1,39 @@
|
||||
import Image from 'next/image'
|
||||
import { Button } from '@/components/Button'
|
||||
import { Container } from '@/components/Container'
|
||||
import React from 'react'
|
||||
|
||||
|
||||
const FFVid = () => {
|
||||
return (
|
||||
<section
|
||||
id="testimonials"
|
||||
aria-label="What our customers are saying"
|
||||
className="bg-creme-600 pt-6 pb-24"
|
||||
>
|
||||
<Container>
|
||||
<div className="mx-auto max-w-5xl md:text-center">
|
||||
<h2 className="font-display mt-2 text-3xl font-bold tracking-tight text-gray-800 sm:text-4xl">
|
||||
A Glimpse Into Private Retreats at VEDA
|
||||
</h2>
|
||||
<p className="mt-4 mb-12 text-lg pb-6 tracking-tight text-slate-700">
|
||||
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">
|
||||
<iframe
|
||||
src="https://player.vimeo.com/video/725069296?autoplay=1&loop=1&muted=1"
|
||||
width="100%"
|
||||
height="600"
|
||||
frameBorder="0"
|
||||
allow="autoplay; fullscreen; picture-in-picture"
|
||||
allowFullScreen
|
||||
className="rounded-lg w-full max-w-6xl mx-auto"
|
||||
></iframe>
|
||||
</div>
|
||||
</Container>
|
||||
</section>
|
||||
);
|
||||
};
|
||||
|
||||
export default FFVid;
|
@@ -1,70 +1,74 @@
|
||||
import Image from 'next/image'
|
||||
|
||||
import { Container } from '@/components/Container'
|
||||
import avatarImage1 from '@/images/avatars/avatar-1.png'
|
||||
import avatarImage2 from '@/images/avatars/avatar-2.png'
|
||||
import avatarImage3 from '@/images/avatars/avatar-3.png'
|
||||
import avatarImage4 from '@/images/avatars/avatar-4.png'
|
||||
import avatarImage5 from '@/images/avatars/avatar-5.png'
|
||||
|
||||
const testimonials = [
|
||||
[
|
||||
{
|
||||
content:
|
||||
"VEDA exceeded all my expectations. The attention to detail and personalized service made our Nile cruise a truly unforgettable experience. Highly recommend!",
|
||||
"I had the most wonderful retreat with VEDA along the Nile. You are really immersed in its atmosphere as you slowly pass the sleepy river bank villages, local farmers going about their day, and lush green nature while surrounded by the history of the pharaohs past. It's not just a retreat with healthy eating and relaxing sessions, it's a spiritual experience where you are invited to open your heart and mind, if you let go you will leave feeling so uplifted. I will definitely be back again!",
|
||||
author: {
|
||||
name: 'Sheryl Berge',
|
||||
role: 'CEO at Lynch LLC',
|
||||
image: avatarImage1,
|
||||
name: 'Adnan',
|
||||
role: 'Retreat Guest',
|
||||
image: '/images/comments/Adnan.jpg',
|
||||
},
|
||||
},
|
||||
{
|
||||
content:
|
||||
"VEDA exceeded all my expectations. The attention to detail and personalized service made our Nile cruise a truly unforgettable experience. Highly recommend!",
|
||||
"When I set foot on the ship, my world was changed. The sincere joy and authenticity of the team, the powerful serenity of the river, the quality of the rooms with incredible views, it all puts you directly in an atmosphere of total relaxation. The humanity and the delicacy of the attention I could feel touched my heart very deeply. The experience has changed something inside of me.",
|
||||
author: {
|
||||
name: 'Amy Hahn',
|
||||
role: 'Director at Velocity Industries',
|
||||
image: avatarImage4,
|
||||
name: 'Eloise',
|
||||
role: 'Retreat Guest',
|
||||
image: '/images/comments/eloise.jpg',
|
||||
},
|
||||
},
|
||||
],
|
||||
[
|
||||
{
|
||||
content:
|
||||
"I was blown away by the beauty and serenity of the VEDA dahabiyas. The personalized itinerary was perfect for our group, making every moment special and memorable.",
|
||||
"The VEDA trip on the Nile was not only a journey in the geographic sense but really also a journey that my heart and soul took. I was not that happy about going but when I boarded the Veda boat in Luxor, I transformed in a second from a frowning person to a smiling one. The peaceful, serene, majestic nile effects reflect on you. I will never forget the trip and every part of me is begging me to return as soon as possible.",
|
||||
author: {
|
||||
name: 'Leland Kiehn',
|
||||
role: 'Founder of Kiehn and Sons',
|
||||
image: avatarImage5,
|
||||
name: 'Owen',
|
||||
role: 'Retreat Guest',
|
||||
image: '/images/comments/owen.jpg',
|
||||
},
|
||||
},
|
||||
{
|
||||
content:
|
||||
"From the luxurious accommodations to the incredible crew, VEDA made our trip down the Nile a dream come true. Can't wait to return!",
|
||||
"I am very fortunate to have attended a VEDA retreat on the Nile last December. It was the best Christmas gift possible: great group, magical Nile, incredible temples. VEDA's understated luxury, smart cuisine and extremely accommodating staff made the experience extra special. My personal discovery was the temples. Each temple had a unique gift to offer: Isis' motherly support, Zahmet's clarity, Osiris' protection.",
|
||||
author: {
|
||||
name: 'Erin Powlowski',
|
||||
role: 'COO at Armstrong Inc',
|
||||
image: avatarImage2,
|
||||
name: 'Helena',
|
||||
role: 'Retreat Guest',
|
||||
image: '/images/comments/helena.jpg',
|
||||
},
|
||||
},
|
||||
],
|
||||
[
|
||||
{
|
||||
content:
|
||||
" The eco-friendly approach of VEDA is commendable. We enjoyed every moment, knowing we were in harmony with nature. A perfect blend of luxury and sustainability!",
|
||||
"VEDA exceeded every expectation I had. The combination of ancient Egyptian culture and modern wellness practices created something truly magical. Watching the sunrise over the Nile while practicing yoga on deck was life-changing!",
|
||||
author: {
|
||||
name: 'Peter Renolds',
|
||||
role: 'Founder of West Inc',
|
||||
image: avatarImage3,
|
||||
name: 'Sacha',
|
||||
role: 'Wellness Enthusiast',
|
||||
image: '/images/comments/sacha.jpg',
|
||||
},
|
||||
},
|
||||
{
|
||||
content:
|
||||
"Our family had the most amazing time on VEDA. The curated experiences and the hospitality of the crew were outstanding. A once-in-a-lifetime journey!",
|
||||
"As someone who travels frequently for work, I can honestly say VEDA is in a league of its own. The thoughtful curation of experiences, from temple visits with knowledgeable guides to intimate cooking classes with local ingredients, created memories I'll treasure forever. The dahabiya itself is a floating sanctuary of peace and luxury.",
|
||||
author: {
|
||||
name: 'Amy Hahn',
|
||||
role: 'Director at Velocity Industries',
|
||||
image: avatarImage4,
|
||||
name: 'Karoline',
|
||||
role: 'Travel Consultant',
|
||||
image: '/images/comments/karoline.jpeg',
|
||||
},
|
||||
},
|
||||
{
|
||||
content:
|
||||
"What struck me most about VEDA was how they seamlessly blend adventure with relaxation. One moment you're exploring ancient tombs, the next you're enjoying a massage while floating down the world's most famous river. The organic meals were exceptional, and the evening discussions under the stars created bonds with fellow travelers that continue today.",
|
||||
author: {
|
||||
name: 'Sam',
|
||||
role: 'Adventure Seeker',
|
||||
image: '/images/comments/sam.jpg',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
Reference in New Issue
Block a user