Merge branch 'main' into development_fix
This commit is contained in:
@@ -161,7 +161,7 @@ export function Boat() {
|
||||
<h2 className="font-display mt-2 text-3xl font-bold tracking-tight text-gray-800 sm:text-4xl">
|
||||
VEDA DAHABIYAS
|
||||
</h2>
|
||||
<p className="mt-2 text-lg tracking-wide font-normal leading-8 text-gray-600">
|
||||
<p className="mt-6 max-w-3xl text-lg leading-8 text-gray-600">
|
||||
Discover peaceful platforms where every detail ensures a truly memorable stay. Our fleet of traditional dahabiyas combines authentic Nile heritage with modern comfort, offering intimate sailing experiences that connect you with Egypt's timeless river culture. Each vessel is carefully maintained and uniquely designed to provide the perfect setting for relaxation, reflection, and genuine connection with the magnificent Nile landscape.
|
||||
</p>
|
||||
</div>
|
||||
|
@@ -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;
|
@@ -12,7 +12,7 @@ export default function Example() {
|
||||
<p className="mt-2 text-xl leading-12 text-gray-300">
|
||||
Embark on a Transformative Journey Along the Nile
|
||||
</p>
|
||||
<p className="mt-6 text-lg leading-8 text-gray-300">
|
||||
<p className="mt-6 max-w-3xl text-lg leading-8 text-gray-600">
|
||||
Discover the heart of Egypt on our specially designed dahabiyas, crafted to elevate your energy and frequency through unique experiences. These elegant vessels are perfect for spiritual work and mystical exploration, offering a harmonious setting to connect with the essence of the Nile. Drift past ancient wonders and immerse yourself in the tranquil rhythm of the river, embarking on a journey of self-discovery and rejuvenation.
|
||||
</p>
|
||||
</div>
|
||||
|
@@ -1,35 +1,30 @@
|
||||
const features = [
|
||||
{ name: 'Mind and Body Practices', description: 'Activities that enhance physical well-being and mental clarity through mindful movement and meditation.' },
|
||||
{ name: 'Healing and Wellness Therapies', description: 'Therapeutic activities designed to promote relaxation, rejuvenation, and overall well-being.' },
|
||||
{ name: 'Holistic Health and Nutrition', description: 'Programs focused on nourishing the body and promoting health through mindful eating and natural remedies.' },
|
||||
{ name: 'Creative and Expressive Workshops', description: 'Opportunities for self-expression and exploration through artistic and creative endeavors.' },
|
||||
{ name: 'Relaxation and Reflection', description: 'Activities that encourage rest, introspection, and a deeper connection with oneself and the natural world.' },
|
||||
{ name: 'Entertainment and Performance Arts', description: 'Experiences that offer enjoyment and inspiration through music, dance, and captivating performances.' },
|
||||
{ name: 'Mind and Body Practices', description: 'Activities that enhance physical well-being and mental clarity through mindful movement and meditation.', image: '/images/activities/mind.jpg' },
|
||||
{ name: 'Healing and Wellness Therapies', description: 'Therapeutic activities designed to promote relaxation, rejuvenation, and overall well-being.', image: '/images/activities/healing.jpg' },
|
||||
{ name: 'Holistic Health and Nutrition', description: 'Programs focused on nourishing the body and promoting health through mindful eating and natural remedies.', image: '/images/activities/holistic.jpg' },
|
||||
{ name: 'Creative and Expressive Workshops', description: 'Opportunities for self-expression and exploration through artistic and creative endeavors.', image: '/images/activities/creative.jpg' },
|
||||
{ name: 'Relaxation and Reflection', description: 'Activities that encourage rest, introspection, and a deeper connection with oneself and the natural world.', image: '/images/activities/relax.jpg' },
|
||||
{ name: 'Entertainment and Performance Arts', description: 'Experiences that offer enjoyment and inspiration through music, dance, and captivating performances.', image: '/images/activities/entertain.jpg' },
|
||||
]
|
||||
|
||||
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">
|
||||
<img
|
||||
src={feature.image}
|
||||
alt={feature.name}
|
||||
className="h-48 w-full object-cover rounded-lg mb-4"
|
||||
/>
|
||||
<dt className="font-medium text-gray-900">{feature.name}</dt>
|
||||
<dd className="mt-2 text-sm text-gray-500">{feature.description}</dd>
|
||||
</div>
|
||||
|
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>
|
||||
)
|
||||
}
|
@@ -6,6 +6,7 @@ export function Experiences() {
|
||||
<p className="mt-2 max-w-lg text-4xl font-semibold tracking-tight text-pretty text-gray-900 sm:text-5xl">
|
||||
VEDA EXPERIENCES
|
||||
</p>
|
||||
|
||||
<p className="mt-6 max-w-3xl text-lg leading-8 text-gray-600">
|
||||
From intimate community gatherings to professional retreats, VEDA offers transformative experiences on the Nile. Each space is thoughtfully designed to foster connection, creativity, and personal growth in an inspiring riverside setting.
|
||||
</p>
|
||||
@@ -20,8 +21,8 @@ export function Experiences() {
|
||||
/>
|
||||
</div>
|
||||
<div className="p-10">
|
||||
<p className="mt-2 text-lg font-medium tracking-tight text-gray-900">Community building Space</p>
|
||||
<p className="mt-2 max-w-xl text-sm/6 text-gray-600">
|
||||
<p className="mt-2 text-lg font-semibold tracking-tight text-gray-900">Community building Space</p>
|
||||
<p className="mt-2 max-w-xl text-sm lg:text-base text-gray-600">
|
||||
Community building holds significant value by fostering a sense of belonging, providing social and emotional support, and promoting collective action. It enhances social capital, encourages collaboration. Human to human connection become more and more important as new technological times require us to collaborate more on a peer to peer level and connect on different levels with each other.
|
||||
</p>
|
||||
</div>
|
||||
@@ -37,8 +38,8 @@ export function Experiences() {
|
||||
/>
|
||||
</div>
|
||||
<div className="p-10">
|
||||
<p className="mt-2 text-lg font-medium tracking-tight text-gray-900">Private Retreats</p>
|
||||
<p className="mt-2 max-w-lg text-sm/6 text-gray-600">
|
||||
<p className="mt-2 text-lg font-semibold tracking-tight text-gray-900">Private Retreats</p>
|
||||
<p className="mt-2 max-w-lg text-sm lg:text-base text-gray-600">
|
||||
Designed for companies, private groups or families, veda is happy to organise your exclusive retreat experience.
|
||||
These retreats offer the flexibility to design the itinerary and activities based on the group’s specific interests and needs.
|
||||
</p>
|
||||
@@ -55,8 +56,8 @@ These retreats offer the flexibility to design the itinerary and activities base
|
||||
/>
|
||||
</div>
|
||||
<div className="p-10">
|
||||
<p className="mt-2 text-lg font-medium tracking-tight text-gray-900">Events & Conferences</p>
|
||||
<p className="mt-2 max-w-lg text-sm/6 text-gray-600">
|
||||
<p className="mt-2 text-lg font-semibold tracking-tight text-gray-900">Events & Conferences</p>
|
||||
<p className="mt-2 max-w-lg text-sm lg:text-base text-gray-600">
|
||||
VEDA’s facilities are suited for hosting events, a unique venue that combines professional functionality with the tranquility of the Nile.
|
||||
An innovative setting that stands apart from traditional conference venues, promising a impactful event.
|
||||
</p>
|
||||
@@ -73,8 +74,8 @@ An innovative setting that stands apart from traditional conference venues, prom
|
||||
/>
|
||||
</div>
|
||||
<div className="p-10">
|
||||
<p className="mt-2 text-lg font-medium tracking-tight text-gray-900">Digital Nomad Hub</p>
|
||||
<p className="mt-2 max-w-lg text-sm/6 text-gray-600">
|
||||
<p className="mt-2 text-lg font-semibold tracking-tight text-gray-900">Digital Nomad Hub</p>
|
||||
<p className="mt-2 max-w-lg text-sm lg:text-base text-gray-600">
|
||||
A haven for remote workers seeking inspiration, focus, and balance. Our spaces combine reliable connectivity, comfortable work areas, and serene surroundings — creating the perfect environment to blend productivity with rejuvenation.
|
||||
</p>
|
||||
</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;
|
@@ -273,7 +273,7 @@ export function SecondaryFeatures() {
|
||||
<h2 className="font-display mt-2 text-3xl font-bold tracking-tight text-gray-800 sm:text-4xl">
|
||||
VEDA DAHABIYAS
|
||||
</h2>
|
||||
<p className="mt-2 text-lg tracking-wide font-normal leading-8 text-gray-600">
|
||||
<p className="mt-6 max-w-3xl text-lg leading-8 text-gray-600">
|
||||
Discover peaceful platforms where every detail ensures a truly memorable stay.
|
||||
</p>
|
||||
</div>
|
||||
|
@@ -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