From 2cf874d039b42b628ea3f6a609f4ce640bb4726f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:49:59 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 126 +++++++++++------------------------------------ 1 file changed, 28 insertions(+), 98 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1f3bb07..5f75045 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Star, Leaf, CheckCircle, Shield, Phone, Mail } from "lucide-react"; +import { Star, Leaf, CheckCircle, Shield, Phone } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -22,8 +22,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, @@ -31,8 +30,7 @@ export default function HomePage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Tree Removal", href: "/services" }, { label: "Tree Trimming", href: "/services" }, { label: "Stump Grinding", href: "/services" }, @@ -40,16 +38,14 @@ export default function HomePage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "📞 (256) 374-2193", href: "tel:+12563742193" }, { label: "📍 Harvest, AL 35749", href: "#" }, { label: "Get Free Estimate", href: "/contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, ], @@ -83,40 +79,22 @@ export default function HomePage() { background={{ variant: "radial-gradient" }} buttons={[ { text: "📞 Call Now (256) 374-2193", href: "tel:+12563742193" }, - { text: "Get a Free Estimate", href: "/contact" }, + { text: "Get a Free Estimate", href: "#contact" }, ]} buttonAnimation="slide-up" carouselItems={[ { - id: "hero-1", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-lumberjack-with-chainsaw-forest_181624-59761.jpg", - imageAlt: "Professional tree removal in action", - }, + id: "hero-1", imageSrc: "http://img.b2bpic.net/free-photo/closeup-lumberjack-with-chainsaw-forest_181624-59761.jpg", imageAlt: "Professional tree removal in action"}, { - id: "hero-2", - imageSrc: "http://img.b2bpic.net/free-photo/asian-man-cutting-trees-using-electrical-chainsaw_1150-5896.jpg", - imageAlt: "Expert stump grinding service", - }, + id: "hero-2", imageSrc: "http://img.b2bpic.net/free-photo/asian-man-cutting-trees-using-electrical-chainsaw_1150-5896.jpg", imageAlt: "Expert stump grinding service"}, { - id: "hero-3", - imageSrc: "http://img.b2bpic.net/free-photo/two-female-friends-walk-forest-friends-walking-through-forest-people-nature_169016-67628.jpg", - imageAlt: "Emergency storm cleanup service", - }, + id: "hero-3", imageSrc: "http://img.b2bpic.net/free-photo/two-female-friends-walk-forest-friends-walking-through-forest-people-nature_169016-67628.jpg", imageAlt: "Emergency storm cleanup service"}, { - id: "hero-4", - imageSrc: "http://img.b2bpic.net/free-photo/hands-gardener-orange-gloves-are-trimming-overgrown-green-shrub-using-hedge-shears-sunny-backyard-worker-landscaping-garden-close-up_639032-841.jpg", - imageAlt: "Professional tree trimming and pruning", - }, + id: "hero-4", imageSrc: "http://img.b2bpic.net/free-photo/hands-gardener-orange-gloves-are-trimming-overgrown-green-shrub-using-hedge-shears-sunny-backyard-worker-landscaping-garden-close-up_639032-841.jpg", imageAlt: "Professional tree trimming and pruning"}, { - id: "hero-5", - imageSrc: "http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500875.jpg", - imageAlt: "Skilled and experienced tree service crew", - }, + id: "hero-5", imageSrc: "http://img.b2bpic.net/free-photo/reforestation-done-by-voluntary-group_23-2149500875.jpg", imageAlt: "Skilled and experienced tree service crew"}, { - id: "hero-6", - imageSrc: "http://img.b2bpic.net/free-photo/climber-looking-his-carabiners_23-2147665142.jpg?_wi=1", - imageAlt: "Professional equipment and safety gear", - }, + id: "hero-6", imageSrc: "http://img.b2bpic.net/free-photo/climber-looking-his-carabiners_23-2147665142.jpg", imageAlt: "Professional equipment and safety gear"}, ]} autoPlay={true} autoPlayInterval={5000} @@ -127,46 +105,22 @@ export default function HomePage() {