From 946e5fa1582f3835e5247de86bcab1bc2159c086 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 30 Mar 2026 03:18:37 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 13096af..93d374c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,14 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { + AlertTriangle, + Flame, + Home, + Settings, + ShieldCheck, + Wrench, +} from "lucide-react"; export default function LandingPage() { return ( @@ -110,37 +118,37 @@ export default function LandingPage() { title: "Plumbing Repairs", description: "Precision repairs to keep your home running seamlessly.", imageSrc: "https://pixabay.com/get/g59471d58a603324eec917703a7e4099c8553cc97b50f99832dc0c82585976c017e5696a26291d187a8fb74dafb17f187ee6538a100a21b75645903a71fac7ad7_1280.jpg", - buttonIcon: "Wrench", + buttonIcon: Wrench, }, { title: "Heating Systems", description: "High-efficiency heating solutions designed for reliability.", imageSrc: "https://pixabay.com/get/g56643374ebd977e5895c6b8008fb941230a31b646c4bf590d24ac4154d1f882ef92ea49638414a6da347017dfaf1d4ec0f7d28ab8ad5935f0d48585bee92edf7_1280.jpg", - buttonIcon: "Flame", + buttonIcon: Flame, }, { title: "Boiler Servicing", description: "Professional maintenance to maximize your system's lifespan.", imageSrc: "https://pixabay.com/get/g78584822450916656ea2d1be5037a66bad7f7f57e0ef8ceea606e00977561094bf9c95fd125501be7138f935210a7818da2cad96c95f7d2d2c110c893636ef29_1280.jpg", - buttonIcon: "Settings", + buttonIcon: Settings, }, { title: "Emergency Callouts", description: "Round-the-clock support for your peace of mind.", imageSrc: "https://pixabay.com/get/gd3a8d4c8afe887d9bef2508773b56b065f03218fce1c6749ccdffd2b811db266d1cbaa8d8c636e4ba45f9242f2b660e63a21fbc907235e603cd20cef386632d1_1280.jpg", - buttonIcon: "AlertTriangle", + buttonIcon: AlertTriangle, }, { title: "New Installations", description: "Expert fitting of state-of-the-art plumbing and heating tech.", imageSrc: "https://pixabay.com/get/g7c3b601dc03c11bae481014233baa323a885173efb762c4106cdb7ba3fa182fe256b80633ff0525035a7cd28b290d7e6fac8acbd50b7e6379a342fafccf45758_1280.jpg", - buttonIcon: "Home", + buttonIcon: Home, }, { title: "Maintenance Plans", description: "Preventative care to ensure your home stays protected.", imageSrc: "https://pixabay.com/get/gb88a47da48dd8e54436cb9b429eeb066cfaf8df0f17c84525e1f8f17bcb05d128072ca0b3e5380c7f8efd2db6c2ac38b40b1d27d6eb871ee8a8dcc62ec28e6f2_1280.jpg", - buttonIcon: "ShieldCheck", + buttonIcon: ShieldCheck, }, ]} title="Our Expert Services" From a39e48b44bd7e08cb85a20b2e37b6353d2ac0658 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 03:18:56 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 385 ++++++++++++----------------------------------- 1 file changed, 100 insertions(+), 285 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 93d374c..192cb63 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,6 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import { Wrench, Flame, Settings, AlertTriangle, Home, ShieldCheck } from "lucide-react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; @@ -9,14 +10,6 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { - AlertTriangle, - Flame, - Home, - Settings, - ShieldCheck, - Wrench, -} from "lucide-react"; export default function LandingPage() { return ( @@ -33,289 +26,111 @@ export default function LandingPage() { headingFontWeight="light" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
);