From 984ff284282e9a807424ad8d5ccb39d638470555 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 11:19:07 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 65 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 43 insertions(+), 22 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c9976de..ed26c70 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,7 +7,7 @@ import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; import FaqDouble from "@/components/sections/faq/FaqDouble"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Sparkles, CheckCircle, TrendingUp, Users } from "lucide-react"; +import { Sparkles, CheckCircle, TrendingUp, Users, Shield, Award, ThumbsUp } from "lucide-react"; export default function Home() { const navItems = [ @@ -44,23 +44,31 @@ export default function Home() { background={{ variant: "sparkles-gradient" }} carouselItems={[ { - id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-cute-family-repairs-room_1157-24897.jpg?_wi=1", imageAlt: "Professional home services team"}, + id: "1", imageSrc: "http://img.b2bpic.net/free-photo/young-cute-family-repairs-room_1157-24897.jpg?_wi=1", imageAlt: "Professional home services team" + }, { - id: "2", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721573.jpg?_wi=1", imageAlt: "Expert plumbing services"}, + id: "2", imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721573.jpg?_wi=1", imageAlt: "Expert plumbing services" + }, { - id: "3", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-painting-wall-home_23-2149098981.jpg?_wi=1", imageAlt: "Professional painting services"}, + id: "3", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-painting-wall-home_23-2149098981.jpg?_wi=1", imageAlt: "Professional painting services" + }, { - id: "4", imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-checks-switchboard-tablet-night-shift-smart-service_169016-70936.jpg?_wi=1", imageAlt: "Licensed electrical work"}, + id: "4", imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-checks-switchboard-tablet-night-shift-smart-service_169016-70936.jpg?_wi=1", imageAlt: "Licensed electrical work" + }, { - id: "5", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11868.jpg?_wi=1", imageAlt: "General maintenance services"}, + id: "5", imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11868.jpg?_wi=1", imageAlt: "General maintenance services" + }, { - id: "6", imageSrc: "http://img.b2bpic.net/free-photo/circular-saw-carpenter-using-circular-saw-wood_169016-17039.jpg?_wi=1", imageAlt: "Professional flooring installation"}, + id: "6", imageSrc: "http://img.b2bpic.net/free-photo/circular-saw-carpenter-using-circular-saw-wood_169016-17039.jpg?_wi=1", imageAlt: "Professional flooring installation" + }, ]} buttons={[ { - text: "Get Free Estimate", href: "/contact"}, + text: "Get Free Estimate", href: "/contact" + }, { - text: "Call: 804-938-0669", href: "tel:804-938-0669"}, + text: "Call: 804-938-0669", href: "tel:804-938-0669" + }, ]} buttonAnimation="slide-up" ariaLabel="Hero section showcasing home services" @@ -76,7 +84,8 @@ export default function Home() { features={[ { id: "1", title: "Plumbing Services", description: "From routine maintenance to complex repairs, our licensed plumbers handle all your plumbing needs with precision and care.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721573.jpg?_wi=2", imageAlt: "Professional plumbing work"}, + imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721573.jpg?_wi=2", imageAlt: "Professional plumbing work" + }, items: [ { icon: CheckCircle, text: "Leak detection & repair" }, { icon: CheckCircle, text: "Pipe installation" }, @@ -86,7 +95,8 @@ export default function Home() { }, { id: "2", title: "Electrical Services", description: "Safe, reliable electrical work for all your home needs. Licensed electricians providing installations, repairs, and upgrades.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-checks-switchboard-tablet-night-shift-smart-service_169016-70936.jpg?_wi=2", imageAlt: "Professional electrical work"}, + imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-checks-switchboard-tablet-night-shift-smart-service_169016-70936.jpg?_wi=2", imageAlt: "Professional electrical work" + }, items: [ { icon: CheckCircle, text: "Circuit installation" }, { icon: CheckCircle, text: "Outlet & switch repairs" }, @@ -96,7 +106,8 @@ export default function Home() { }, { id: "3", title: "Painting & Finishing", description: "Transform your space with professional painting services. Interior and exterior work with attention to detail and quality finishes.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-painting-wall-home_23-2149098981.jpg?_wi=2", imageAlt: "Professional painting services"}, + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-painting-wall-home_23-2149098981.jpg?_wi=2", imageAlt: "Professional painting services" + }, items: [ { icon: CheckCircle, text: "Interior painting" }, { icon: CheckCircle, text: "Exterior painting" }, @@ -110,7 +121,8 @@ export default function Home() { useInvertedBackground={false} buttons={[ { - text: "Schedule Service", href: "/contact"}, + text: "Schedule Service", href: "/contact" + }, ]} buttonAnimation="slide-up" /> @@ -120,16 +132,21 @@ export default function Home() { @@ -139,13 +156,17 @@ export default function Home() {