From 8a25fba41f7cb5f9fb9d9b82564a382aeeeb944d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 14:41:41 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 355 +++++++++++++---------------------------------- 1 file changed, 93 insertions(+), 262 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e83cb52..f7781b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,285 +1,116 @@ "use client"; import ReactLenis from "lenis/react"; -import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; +import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; -import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; -import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; -import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import FooterCard from "@/components/sections/footer/FooterCard"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Sparkles, Plane, Compass, Instagram, Facebook, Linkedin } from "lucide-react"; +import { Sparkles, Compass, MapPin } from "lucide-react"; -export default function LuxuryTravelAgencyTemplatePage() { +export default function LuxuryTravelAgencyPage() { return ( - - - - - - - - - + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From 94429018bda4777ece8896f649917f95ee19495d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 14:41:41 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index ee8d361..f3951f3 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; + --background: #fbfbfb; + --card: #ffffff; + --foreground: #1a1a1a; + --primary-cta: #1e3a8a; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #f1f5f9; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #e2e8f0; + --background-accent: #cbd5e1; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1