5 Commits

Author SHA1 Message Date
d922e36ee7 Update src/app/page.tsx 2026-05-12 06:49:22 +00:00
b121d18fb1 Update src/app/services/page.tsx 2026-05-12 06:48:51 +00:00
46ded2f8d4 Update src/app/page.tsx 2026-05-12 06:48:50 +00:00
d11adf377c Merge version_4 into main
Merge version_4 into main
2026-05-12 06:47:00 +00:00
a913a90f86 Merge version_4 into main
Merge version_4 into main
2026-05-12 06:46:35 +00:00
2 changed files with 14 additions and 16 deletions

View File

@@ -6,7 +6,7 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import TimelinePhoneView from '@/components/cardStack/layouts/timelines/TimelinePhoneView';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -42,19 +42,17 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCarouselLogo <TimelinePhoneView
logoText="BENTLEY CONTINENTAL GT" title="BENTLEY CONTINENTAL GT"
description="Redefining the grand tourer. Experience unparalleled performance and refined luxury in every detail." description="Redefining the grand tourer. Experience unparalleled performance and refined luxury in every detail."
buttons={[{ text: "Configure Now", href: "#" }, { text: "Discover More", href: "#about" }]} buttons={[{ text: "Configure Now", href: "#" }, { text: "Discover More", href: "#about" }]}
slides={[ textboxLayout="split"
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-sexy-fashion-blond-girl-model-with-bright-makeup-curly-hairstyle-retro-style-sitting-old-car_158538-9285.jpg", imageAlt: "Bentley Continental GT front profile" }, animationType="blur-reveal"
{ imageSrc: "http://img.b2bpic.net/free-photo/black-car-garage_417767-26.jpg", imageAlt: "Side profile luxury coupe" }, items={[
{ imageSrc: "http://img.b2bpic.net/free-photo/young-woman-driving-car-night_1303-17035.jpg", imageAlt: "Bentley interior details" }, { trigger: "Precision", content: "Engineering beyond expectations.", imageOne: "http://img.b2bpic.net/free-photo/beautiful-sexy-fashion-blond-girl-model-with-bright-makeup-curly-hairstyle-retro-style-sitting-old-car_158538-9285.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/grey-silver-color-sport-car-front-side-view-with-red-wheels-road_114579-1163.jpg", imageAlt: "Rear view cinematic shot" }, { trigger: "Luxury", content: "Bespoke interiors tailored for you.", imageOne: "http://img.b2bpic.net/free-photo/accuracy-leather-work_1098-13413.jpg" }
{ imageSrc: "http://img.b2bpic.net/free-photo/view-3d-car-model_23-2151138933.jpg", imageAlt: "Engine details close up" }, ]}
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-portrait-with-light-effects_23-2151118209.jpg", imageAlt: "Driving through winding road" }, />
]}
/>
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
@@ -169,4 +167,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -56,4 +56,4 @@ export default function ServicesPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }