From c212a189d6bbe14ba41c7a9636e45eacf599060d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 08:27:42 +0000 Subject: [PATCH 1/4] Update src/app/page.tsx --- src/app/page.tsx | 192 +++++++++++++++++++---------------------------- 1 file changed, 76 insertions(+), 116 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7e21286..76e783a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,155 +4,130 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterMedia from '@/components/sections/footer/FooterMedia'; -import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import { Gauge, Zap, TrendingUp, ArrowRight } from "lucide-react"; export default function LandingPage() { return (
-
-
-
-
-
@@ -160,26 +135,11 @@ export default function LandingPage() {
-- 2.49.1 From 8395cf1b7b455bea6c831d5e58333c93a858c2e7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 08:27:42 +0000 Subject: [PATCH 2/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 47bbc8e..a92eb39 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -12,13 +12,13 @@ --background: #0a0a0a; --card: #1a1a1a; - --foreground: #f0f8ffe6; + --foreground: #f5f5f5; --primary-cta: #cee7ff; --primary-cta-text: #0a0a0a; --secondary-cta: #1a1a1a; --secondary-cta-text: #f0f8ffe6; - --accent: #737373; - --background-accent: #737373; + --accent: #3f5c79; + --background-accent: #004a93; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1 From 9d5a76fceb1f945cdbb44a12877182dbda692e6d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 08:29:52 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 76e783a..da032f2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -56,6 +56,7 @@ export default function LandingPage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-sleek-bmw-m4-competition-in-a-dramatic-1774686390135-561f2c5a.png" imageAlt="BMW M4 Competition" mediaAnimation="slide-up" + enableKpiAnimation={true} /> @@ -97,6 +98,7 @@ export default function LandingPage() { textboxLayout="split" gridVariant="bento-grid" animationType="slide-up" + useInvertedBackground={false} metrics={[ { id: "1", value: "503", title: "Horsepower", description: "Explosive power delivery", icon: Zap }, { id: "2", value: "3.8", title: "0-60 MPH", description: "Rapid acceleration", icon: ArrowRight }, @@ -113,6 +115,7 @@ export default function LandingPage() { gridVariant="bento-grid" animationType="slide-up" textboxLayout="split" + useInvertedBackground={false} testimonials={[ { id: "1", name: "Marcus R.", role: "Owner", company: "Track Pro", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/professional-headshot-of-a-happy-custome-1774686392529-1502198c.png" }, { id: "2", name: "Elena K.", role: "Driver", company: "Enthusiast", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-woman-posing-with-a-modern-sedan-looki-1774686392953-88ce751c.png" }, @@ -127,6 +130,8 @@ export default function LandingPage() { description="Connect with our specialists for a personalized consultation on your build." background={{ variant: "gradient-bars" }} buttonText="Inquire Now" + tag="Inquire" + useInvertedBackground={false} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-sleek-bmw-m4-competition-in-a-dramatic-1774686390135-561f2c5a.png" /> -- 2.49.1 From ab54e068a821ec7a36702ee9c5be3de282edafe4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 08:31:52 +0000 Subject: [PATCH 4/4] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index da032f2..cf9bbcc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -53,7 +53,7 @@ export default function LandingPage() { { value: "479 LB-FT", label: "Torque" } ]} buttons={[{ text: "Build Now", href: "#contact" }]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-sleek-bmw-m4-competition-in-a-dramatic-1774686390135-561f2c5a.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-sleek-bmw-m4-competition-in-a-dramatic-1774686390135-561f2c5a.png?_wi=1" imageAlt="BMW M4 Competition" mediaAnimation="slide-up" enableKpiAnimation={true} @@ -71,7 +71,7 @@ export default function LandingPage() { ]} textboxLayout="split" useInvertedBackground={true} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/bmw-m4-competition-side-profile-in-racin-1774686391659-b22e7850.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/bmw-m4-competition-side-profile-in-racin-1774686391659-b22e7850.png?_wi=1" /> @@ -84,7 +84,7 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} products={[ - { id: "1", name: "Racing Blue", price: "$79,900", variant: "Standard", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/bmw-m4-competition-side-profile-in-racin-1774686391659-b22e7850.png" }, + { id: "1", name: "Racing Blue", price: "$79,900", variant: "Standard", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/bmw-m4-competition-side-profile-in-racin-1774686391659-b22e7850.png?_wi=2" }, { id: "2", name: "Metallic Grey", price: "$82,500", variant: "Sport", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/bmw-m4-competition-in-grey-metallic-fron-1774686390797-57940384.png" }, { id: "3", name: "Black Sapphire", price: "$85,000", variant: "Track", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/bmw-m4-competition-rear-view-with-quad-e-1774686391640-e9fa9d59.png" } ]} @@ -132,7 +132,7 @@ export default function LandingPage() { buttonText="Inquire Now" tag="Inquire" useInvertedBackground={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-sleek-bmw-m4-competition-in-a-dramatic-1774686390135-561f2c5a.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BYzlPywJP0TGoGmkGGZXdxr3Bm/a-sleek-bmw-m4-competition-in-a-dramatic-1774686390135-561f2c5a.png?_wi=2" /> -- 2.49.1