From 092815646ce2f97aaf2f2a80310bbc09006290c2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:48:03 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 284 +++++++++++++++++++++++++++-------------------- 1 file changed, 165 insertions(+), 119 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e9d7320..8d33c54 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,13 +3,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import MediaAbout from "@/components/sections/about/MediaAbout"; -import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; -import TeamCardOne from "@/components/sections/team/TeamCardOne"; -import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import ContactCTA from "@/components/sections/contact/ContactCTA"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import TeamCardOne from "@/components/sections/team/TeamCardOne"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Hammer, @@ -49,7 +49,8 @@ export default function HomePage() { { name: "Contact", id: "contact" }, ]} button={{ - text: "Call Now", href: "tel:804-938-0669"}} + text: "Call Now", href: "tel:804-938-0669" + }} /> @@ -64,25 +65,51 @@ export default function HomePage() { mediaItems={[ { imageSrc: - "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg", imageAlt: "Professional handyman tools and equipment"}, + "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149328066.jpg", imageAlt: "Professional handyman tools and equipment" + }, { imageSrc: - "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg", imageAlt: "Skilled handyman performing home repair work"}, + "http://img.b2bpic.net/free-photo/construction-worker-using-hammer-job-site_23-2150530711.jpg", imageAlt: "Skilled handyman performing home repair work" + }, { imageSrc: - "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg", imageAlt: "Professional plumbing service technician"}, + "http://img.b2bpic.net/free-photo/front-view-man-working-as-plumber_23-2150746298.jpg", imageAlt: "Professional plumbing service technician" + }, ]} mediaAnimation="blur-reveal" buttons={[ { - text: "Call Now: 804-938-0669", href: "tel:804-938-0669"}, + text: "Call Now: 804-938-0669", href: "tel:804-938-0669" + }, { - text: "Request Service", href: "#contact"}, + text: "Request Service", href: "#contact" + }, ]} buttonAnimation="slide-up" /> +
+ +
+
+
+ +
+
- -
-
-
- + -
- -
-
@@ -294,45 +326,59 @@ export default function HomePage() { { title: "Services", items: [ { - label: "Plumbing", href: "/services/plumbing"}, + label: "Plumbing", href: "/services/plumbing" + }, { - label: "Electrical", href: "/services/electrical"}, + label: "Electrical", href: "/services/electrical" + }, { - label: "Painting", href: "/services/painting"}, + label: "Painting", href: "/services/painting" + }, { - label: "Flooring", href: "/services/flooring"}, + label: "Flooring", href: "/services/flooring" + }, { - label: "Wall Mounting", href: "#services"}, + label: "Wall Mounting", href: "#services" + }, ], }, { title: "Company", items: [ { - label: "About Us", href: "#about"}, + label: "About Us", href: "#about" + }, { - label: "Our Team", href: "#team"}, + label: "Our Team", href: "#team" + }, { - label: "Reviews", href: "#testimonials"}, + label: "Reviews", href: "#testimonials" + }, { - label: "Contact", href: "/contact"}, + label: "Contact", href: "/contact" + }, ], }, { title: "Contact", items: [ { - label: "Call: 804-938-0669", href: "tel:804-938-0669"}, + label: "Call: 804-938-0669", href: "tel:804-938-0669" + }, { - label: "Richmond, VA", href: "#"}, + label: "Richmond, VA", href: "#" + }, { - label: "Request Service", href: "/contact"}, + label: "Request Service", href: "/contact" + }, ], }, { title: "Legal", items: [ { - label: "Privacy Policy", href: "#"}, + label: "Privacy Policy", href: "#" + }, { - label: "Terms of Service", href: "#"}, + label: "Terms of Service", href: "#" + }, ], }, ]} -- 2.49.1