From d3f4c46e1f5d930973d4bf7971cef5bab94534bd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 05:37:10 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 21615e8..04b7b8f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import MediaAbout from "@/components/sections/about/MediaAbout"; import { Compass } from "lucide-react"; export default function AboutPage() { @@ -27,22 +27,17 @@ export default function AboutPage() { { name: "Services", id: "/services" }, { name: "Destinations", id: "/" }, { name: "Reviews", id: "/" }, - { name: "Contact", id: "/" }, + { name: "Contact", id: "/contact" }, ]} brandName="Luxuria" - button={{ text: "Plan Your Trip", href: "#contact" }} /> - -- 2.49.1 From 50df6aa97cbeeb0130fad1c1a845594ac76abd27 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 05:37:11 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8e3d89a..660951e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,11 +1,10 @@ "use client"; import ReactLenis from "lenis/react"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import FooterCard from "@/components/sections/footer/FooterCard"; +import FooterBase from "@/components/sections/footer/FooterBase"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Instagram, Facebook, Linkedin } from "lucide-react"; export default function ContactPage() { return ( @@ -26,30 +25,28 @@ export default function ContactPage() { navItems={[ { name: "About", id: "/about" }, { name: "Services", id: "/services" }, - { name: "Destinations", id: "/destinations" }, - { name: "Reviews", id: "/reviews" }, + { name: "Destinations", id: "/" }, + { name: "Reviews", id: "/" }, { name: "Contact", id: "/contact" }, ]} brandName="Luxuria" - button={{ text: "Plan Your Trip", href: "/contact" }} /> - - ); -} +} \ No newline at end of file -- 2.49.1 From 0e79d26c563e248d9aca5caf92e7cbd5819b03f9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 1 May 2026 05:37:11 +0000 Subject: [PATCH 3/3] Update src/app/services/page.tsx --- src/app/services/page.tsx | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index bd21ed2..0562635 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -3,8 +3,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import { Sparkles } from "lucide-react"; export default function ServicesPage() { @@ -28,31 +28,29 @@ export default function ServicesPage() { { name: "Services", id: "/services" }, { name: "Destinations", id: "/" }, { name: "Reviews", id: "/" }, - { name: "Contact", id: "/" }, + { name: "Contact", id: "/contact" }, ]} brandName="Luxuria" - button={{ text: "Plan Your Trip", href: "#contact" }} /> - - -- 2.49.1