Update src/app/services/page.tsx

This commit is contained in:
2026-03-03 12:54:47 +00:00
parent 9b436fed33
commit df7c40fb39

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -80,7 +83,7 @@ export default function ServicesPage() {
showBlur={true}
showDimOverlay={true}
buttons={[
{ text: "Schedule Consultation", href: "/contact" },
{ text: "Schedule Consultation", href: "/contact", onClick: () => window.location.href = "/contact" },
]}
/>
</div>
@@ -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)}
/>
</div>
@@ -156,4 +157,4 @@ export default function ServicesPage() {
</div>
</ThemeProvider>
);
}
}