Bob AI: fix build error in src/app/page.tsx

This commit is contained in:
kudinDmitriyUp
2026-03-30 03:19:34 +00:00
parent 77c20530c9
commit 7c842bfd87

View File

@@ -9,7 +9,7 @@ import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Facebook, Twitter } from "lucide-react";
import { Facebook, Twitter, Wrench, Flame, Zap, AlertTriangle, Settings, Shield, CheckCircle, Users, Award } from "lucide-react";
export default function LandingPage() {
return (
@@ -52,7 +52,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background="gradient-bars"
background={{ type: "gradient-bars" }}
title="Your Home. Our Finest Work."
description="Excellence in plumbing and heating for homeowners who demand the best. With a flawless 5-star record and years of dedicated service, we bring precision to every pipe."
tag="Trusted Premium Service"
@@ -75,18 +75,6 @@ export default function LandingPage() {
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/a-sleek-digital-card-ui-element-represen-1774840586441-042ac4c5.png?_wi=1",
imageAlt: "Emergency service",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/expert-plumber-working-in-a-refined-resi-1774840586776-fc1ab3f1.png?_wi=1",
imageAlt: "Professional plumbing expert",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/professional-high-end-plumbing-and-heati-1774840588264-1a7ce388.png?_wi=2",
imageAlt: "High-end boiler installation",
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/a-sleek-digital-card-ui-element-represen-1774840586441-042ac4c5.png?_wi=2",
imageAlt: "24/7 technical support",
},
]}
mediaAnimation="blur-reveal"
rating={5}
@@ -102,42 +90,42 @@ export default function LandingPage() {
{
title: "Plumbing Repairs",
description: "Rapid resolution for leaks, pipe bursts, and fixture failures.",
buttonIcon: "Wrench",
buttonIcon: Wrench,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/professional-high-end-plumbing-and-heati-1774840588264-1a7ce388.png?_wi=3",
imageAlt: "Professional high-end plumbing and heating service hero image. A clean, premium environment showing ",
},
{
title: "Heating Systems",
description: "Efficient optimization of residential heating infrastructure.",
buttonIcon: "Flame",
buttonIcon: Flame,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/a-sleek-digital-card-ui-element-represen-1774840586441-042ac4c5.png?_wi=3",
imageAlt: "A sleek digital card UI element representing 24/7 emergency plumbing response. Dark background, glow",
},
{
title: "Boiler Servicing",
description: "Expert annual checks for peak efficiency and safety.",
buttonIcon: "Zap",
buttonIcon: Zap,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUyKLdwpUXbE0iOplPhEBolF5g/expert-plumber-working-in-a-refined-resi-1774840586776-fc1ab3f1.png?_wi=2",
imageAlt: "Expert plumber working in a refined residential space. Professional equipment, sharp focus, trust-in",
},
{
title: "Emergency Callouts",
description: "Priority 24/7 support when you need it most.",
buttonIcon: "AlertTriangle",
buttonIcon: AlertTriangle,
imageSrc: "https://pixabay.com/get/g862749da26e6a35b9c93e6558d1f46f648ff916a5cb48fa5a6b1496bc7806db01706472598c4c80cd00187e4d3932ed7e019ef3667eff1b6ff4c726b16000f68_1280.jpg?_wi=1",
imageAlt: "portrait happy customer professional",
},
{
title: "New Installations",
description: "Seamless installation of modern plumbing and heating systems.",
buttonIcon: "Settings",
buttonIcon: Settings,
imageSrc: "https://pixabay.com/get/gaa6f7433096b9e232198f32b7da9d05018cd6e833484862c1afd66b49f397ba88c42913f5801022fbe8e3127d8b4ce5209f166ce56c1795b0ac6dcb6f60c8e33_1280.png?_wi=1",
imageAlt: "portrait happy customer professional",
},
{
title: "Maintenance Plans",
description: "Proactive care to protect your home's infrastructure.",
buttonIcon: "Shield",
buttonIcon: Shield,
imageSrc: "https://pixabay.com/get/g28cfdbeafae842477c2a0eafc7e5e4dd46ccce1f2835e39c9a5debe0cb3d2f727f7319402f72894a67dfe5b24b3c80bfdcd623b2eed3126f51abd18093b0ec29_1280.jpg?_wi=1",
imageAlt: "portrait happy customer professional",
},
@@ -242,6 +230,25 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Why Choose Us"
description="Discover the advantages of working with our dedicated team of professionals."
features={[
{
icon: CheckCircle,
title: "Guaranteed Quality",
description: "We stand by our work with a comprehensive quality guarantee on all services.",
},
{
icon: Users,
title: "Expert Technicians",
description: "Our team is comprised of certified, experienced, and friendly professionals.",
},
{
icon: Award,
title: "Award-Winning Service",
description: "Recognized for our commitment to excellence and customer satisfaction.",
},
]}
/>
</div>