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" }} /> - 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 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" }} /> - -