8 Commits

Author SHA1 Message Date
91dcd37094 Bob AI: change the text of the testimonial to:
Viatelier ...
2026-02-07 06:33:06 +00:00
496d198189 Merge version_4 into main
Merge version_4 into main
2026-02-07 06:18:37 +00:00
a9115000b1 Bob AI: add a page for Rome Destination 2026-02-07 06:18:02 +00:00
ef6c24d12d Merge version_3 into main
Merge version_3 into main
2026-02-07 06:13:14 +00:00
7c7c3640f9 Bob AI: add subpages for each destination, include informa... 2026-02-07 06:12:40 +00:00
dc9307c343 Merge version_2 into main
Merge version_2 into main
2026-02-07 05:59:48 +00:00
80f7fc35b6 Bob AI: The corners of elements are too sharp make them mo... 2026-02-07 05:59:14 +00:00
deb13d8670 Bob AI: Change border radiuses from 0 to 25 on the entire ... 2026-02-07 05:59:02 +00:00
2 changed files with 43 additions and 2 deletions

View File

@@ -11,13 +11,14 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { MapPin, Sparkles, Plane } from "lucide-react"; import { MapPin, Sparkles, Plane } from "lucide-react";
import SplitAbout from '@/components/sections/about/SplitAbout';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="expand-hover" defaultButtonVariant="expand-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="entrance-slide"
borderRadius="sharp" borderRadius="pill"
contentWidth="smallMedium" contentWidth="smallMedium"
sizing="mediumLargeSizeMediumTitles" sizing="mediumLargeSizeMediumTitles"
background="aurora" background="aurora"
@@ -120,7 +121,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen <TestimonialCardFifteen
testimonial="Viatelier transformed my entire perspective on travel. Every detail was impeccably curated, from the authentic local experiences to the luxurious accommodations. This is not just a trip—it's a journey into the soul of Italy." testimonial="Viatelier completely redefined what travel can feel like. Every moment was thoughtfully designed, blending intimate local experiences with effortless luxury. This wasnt just a vacation, it was an immersion into the true spirit of Italy."
rating={5} rating={5}
author="Margaret Ashford, Executive" author="Margaret Ashford, Executive"
avatars={[ avatars={[
@@ -204,6 +205,42 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="about" data-section="about">
<SplitAbout
title="Discover Paris"
description="Step into the heart of Paris, where history and modernity blend seamlessly. From the Eiffel Tower to the Louvre, every corner tells a story."
bulletPoints={[
{ title: "Eiffel Tower", description: "Iconic landmark offering panoramic views of the city." },
{ title: "Louvre Museum", description: "Home to thousands of works of art, including the Mona Lisa." },
{ title: "Notre-Dame Cathedral", description: "Gothic masterpiece with stunning architecture and history." },
{ title: "Montmartre", description: "Bohemian neighborhood with charming streets and vibrant nightlife." }
]}
imageSrc="https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"
imageAlt="Paris skyline with Eiffel Tower"
imagePosition="left"
textboxLayout="stacked"
useInvertedBackground="none"
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="Discover Rome"
description="Step into the heart of Rome, where ancient history and vibrant culture converge. From the Colosseum to the Vatican City, every stone whispers tales of the past."
bulletPoints={[
{ title: "Colosseum", description: "Ancient amphitheater known for its gladiatorial contests." },
{ title: "Vatican City", description: "Smallest independent state in the world, home to St. Peter's Basilica." },
{ title: "Roman Forum", description: "Archaeological site and former marketplace of ancient Rome." },
{ title: "Pantheon", description: "Remarkable temple known for its perfect dome and oculus." }
]}
imageSrc="https://images.unsplash.com/photo-1519681393784-d120267933ba?w=800&q=80"
imageAlt="Rome skyline with Colosseum"
imagePosition="left"
textboxLayout="stacked"
useInvertedBackground="none"
/>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[

View File

@@ -124,6 +124,8 @@
--padding-hero-page-padding: calc(var(--height-10) + var(--vw-1_5) + var(--vw-1_5) + var(--height-10)); --padding-hero-page-padding: calc(var(--height-10) + var(--vw-1_5) + var(--vw-1_5) + var(--height-10));
--padding-hero-page-padding-1_5: calc(1.5 * (var(--height-10) + var(--vw-1_5) + var(--vw-1_5) + var(--height-10))); --padding-hero-page-padding-1_5: calc(1.5 * (var(--height-10) + var(--vw-1_5) + var(--vw-1_5) + var(--height-10)));
--padding-hero-page-padding-double: calc(2 * (var(--height-10) + var(--vw-1_5) + var(--vw-1_5) + var(--height-10))); --padding-hero-page-padding-double: calc(2 * (var(--height-10) + var(--vw-1_5) + var(--vw-1_5) + var(--height-10)));
--border-radius: 25px;
} }
@media (max-width: 767px) { @media (max-width: 767px) {
@@ -211,5 +213,7 @@
--height-130: 117vw; --height-130: 117vw;
--height-140: 126vw; --height-140: 126vw;
--height-150: 135vw; --height-150: 135vw;
--border-radius: 25px;
} }
} }