diff --git a/src/app/page.tsx b/src/app/page.tsx index a079074..064f888 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; +import { ChevronRight } from "lucide-react"; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterBase from '@/components/sections/footer/FooterBase'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; export default function LandingPage() { return ( @@ -52,10 +53,7 @@ export default function LandingPage() { mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/white-abstract-architectural-detail-against-blue-sky_23-2148139871.jpg", imageAlt: "Luxury interior design" }, { imageSrc: "http://img.b2bpic.net/free-photo/top-view-thimbles-thread_23-2148527981.jpg", imageAlt: "Handcrafted precision" }, - { imageSrc: "http://img.b2bpic.net/free-photo/marble-texture-background_24837-262.jpg", imageAlt: "Minimalist marble texture" }, - { imageSrc: "http://img.b2bpic.net/free-photo/window-shadow-bedroom-wall_23-2148870644.jpg", imageAlt: "Elegantly lit living room" }, - { imageSrc: "http://img.b2bpic.net/free-photo/gold-foil-texture-background_626616-160.jpg", imageAlt: "Soft gold accents" }, - { imageSrc: "http://img.b2bpic.net/free-photo/workplace-items-assortment-top-view_23-2148975808.jpg", imageAlt: "Premium workspace" } + { imageSrc: "http://img.b2bpic.net/free-photo/marble-texture-background_24837-262.jpg", imageAlt: "Minimalist marble texture" } ]} /> @@ -64,11 +62,9 @@ export default function LandingPage() { @@ -84,7 +80,6 @@ export default function LandingPage() { { title: "Trust", description: "Building relationships that last a lifetime." } ]} imageSrc="http://img.b2bpic.net/free-photo/technological-piece-background_23-2148882601.jpg" - imageAlt="Our commitment to craftsmanship" mediaAnimation="blur-reveal" /> @@ -95,69 +90,62 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { title: "Bespoke Design", description: "Customized solutions shaped to your unique vision.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-dark-square-plates-with-empty-cup-dark-surface-cutlery-restaurant-lunch-color-coffee-plate-tea-drink_179666-19752.jpg", imageAlt: "Bespoke design" }, - { title: "Premium Consultation", description: "Strategic guidance for high-end investments.", imageSrc: "http://img.b2bpic.net/free-photo/master-working-with-metallic-equipments_114579-12213.jpg", imageAlt: "Consultation service" }, - { title: "Curated Experiences", description: "Exceptional service for exclusive requirements.", imageSrc: "http://img.b2bpic.net/free-photo/detail-brown-black-feather-backgrounds_23-2148114526.jpg", imageAlt: "Curated experience" } + { title: "Premium Consultation", description: "Strategic guidance for high-end investments.", imageSrc: "http://img.b2bpic.net/free-photo/master-working-with-metallic-equipments_114579-12213.jpg", imageAlt: "Consultation service" } ]} title="Our Signature Services" - description="Tailored experiences designed for those who refuse to settle for anything less than excellence." + description="Tailored experiences for those who refuse to settle." />
-
-
-
); -} \ No newline at end of file +}