From 4bbca6a7ff985db83cef0a4dd64e02440da71de1 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 26 Apr 2026 01:30:36 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 1bd431f..9be6e45 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -73,8 +73,6 @@ export default function HomePage() { imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-examining-undercarriage-car-with-flashlight-repair-shop_637285-12709.jpg", }, ], - imageSrc: "http://img.b2bpic.net/free-photo/woman-wearing-sunglasses-standing-near-source-light_250224-293.jpg?_wi=2", - imageAlt: "tire mounting and balancing precision", }, { icon: ShieldCheck, @@ -88,8 +86,6 @@ export default function HomePage() { imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-mechanic-working-with-car-tire-auto-repair-shop_637285-7618.jpg", }, ], - imageSrc: "http://img.b2bpic.net/free-photo/mechanic-using-laptop-while-servicing-car-engine_1170-1345.jpg?_wi=2", - imageAlt: "tire mounting and balancing precision", }, { icon: Zap, @@ -103,8 +99,6 @@ export default function HomePage() { imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-wheel-disc-brake_1170-1215.jpg", }, ], - imageSrc: "http://img.b2bpic.net/free-photo/communication-repairing-male-executive-abstract_1134-953.jpg?_wi=1", - imageAlt: "tire mounting and balancing precision", }, ]} /> -- 2.49.1 From 41a134ded8314a0fa887e7d82d59687f87a11c70 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 01:30:43 +0000 Subject: [PATCH 2/2] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 277 ++++++++++++++++------------------------- 1 file changed, 105 insertions(+), 172 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 9be6e45..838284f 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,194 +5,127 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou import MetricsMinimalCards from '@/components/sections/metrics/MetricsMinimalCards'; import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; import TestimonialAvatarCard from '@/components/sections/testimonial/TestimonialAvatarCard'; +import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; import { CheckCircle, ShieldCheck, Zap } from "lucide-react"; export default function HomePage() { return ( <> -
- -
+
+ +
-
- -
+
+ +
-
- + -
+ icon: "Zap", title: "Fast Diagnostics", description: "Accurate troubleshooting for your engine and mechanical systems.", mediaItems: [ + { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171237.jpg" }, + { imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-wheel-disc-brake_1170-1215.jpg" } + ] + } + ]} + /> + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
+ + ); } -- 2.49.1