From df7c40fb399db3cd6480aea762f81dbfa7f83b8d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 12:54:47 +0000 Subject: [PATCH] Update src/app/services/page.tsx --- src/app/services/page.tsx | 43 ++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index f761b61..c0deaf4 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -28,7 +28,6 @@ export default function ServicesPage() { items: [ { label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }, - { label: "Blog", href: "/blog" }, ], }, { @@ -47,6 +46,10 @@ export default function ServicesPage() { }, ]; + const handleContactSubmit = (email: string) => { + console.log("Service consultation requested:", email); + }; + return ( window.location.href = "/contact" }, ]} /> @@ -92,36 +95,33 @@ export default function ServicesPage() { features={[ { id: 1, - title: "Landscape Design & Planning", - description: "Comprehensive design services that transform your vision into reality. Our team specializes in creating bespoke outdoor environments that reflect your lifestyle and property character.", + title: "Landscape Design & Planning", description: "Comprehensive design services that transform your vision into reality. Our team specializes in creating bespoke outdoor environments that reflect your lifestyle and property character.", buttons: [ + { text: "Request Design Consultation", href: "/contact", onClick: () => window.location.href = "/contact" } + ], phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer_158595-7007.jpg?_wi=2", - }, + imageSrc: "http://img.b2bpic.net/free-photo/greenhouse-owner-presenting-flowers-options-potential-customer-retailer_158595-7007.jpg?_wi=2"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-from-hong-kong_181624-34551.jpg?_wi=2", - }, + imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-from-hong-kong_181624-34551.jpg?_wi=2"}, }, { id: 2, - title: "Premium Hardscaping", - description: "Master stonework and hardscape installation featuring natural materials, custom paving, and architectural elements that elevate outdoor living spaces.", + title: "Premium Hardscaping", description: "Master stonework and hardscape installation featuring natural materials, custom paving, and architectural elements that elevate outdoor living spaces.", buttons: [ + { text: "View Hardscape Examples", href: "/portfolio", onClick: () => window.location.href = "/portfolio" } + ], phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/path-way_74190-2125.jpg?_wi=3", - }, + imageSrc: "http://img.b2bpic.net/free-photo/path-way_74190-2125.jpg?_wi=3"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/path-way_74190-2125.jpg?_wi=4", - }, + imageSrc: "http://img.b2bpic.net/free-photo/path-way_74190-2125.jpg?_wi=4"}, }, { id: 3, - title: "Year-Round Maintenance", - description: "Professional seasonal maintenance programs ensuring your landscape remains pristine throughout the year with specialized pruning, care, and property management.", + title: "Year-Round Maintenance", description: "Professional seasonal maintenance programs ensuring your landscape remains pristine throughout the year with specialized pruning, care, and property management.", buttons: [ + { text: "Learn About Maintenance Plans", href: "/contact", onClick: () => window.location.href = "/contact" } + ], phoneOne: { - imageSrc: "http://img.b2bpic.net/free-photo/male-gardener-harvesting-flower-with-secateurs_23-2148165189.jpg?_wi=2", - }, + imageSrc: "http://img.b2bpic.net/free-photo/male-gardener-harvesting-flower-with-secateurs_23-2148165189.jpg?_wi=2"}, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/gardener-with-weedwacker-cutting-grass-garden_329181-20539.jpg?_wi=2", - }, + imageSrc: "http://img.b2bpic.net/free-photo/gardener-with-weedwacker-cutting-grass-garden_329181-20539.jpg?_wi=2"}, }, ]} showStepNumbers={true} @@ -145,6 +145,7 @@ export default function ServicesPage() { inputPlaceholder="Your email address" buttonText="Schedule Now" termsText="We respect your privacy. Your service inquiry will be handled with complete confidentiality." + onSubmit={(email: string) => handleContactSubmit(email)} /> @@ -156,4 +157,4 @@ export default function ServicesPage() { ); -} \ No newline at end of file +}