Merge version_2 into main #1

Merged
bender merged 1 commits from version_2 into main 2026-04-28 18:01:00 +00:00

View File

@@ -39,7 +39,7 @@ export default function LandscapingPage() {
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Call Now", href: "tel:5615900228" }}
button={{ text: "Call Now", onClick: () => window.location.href = "tel:5615900228" }}
/>
</div>
@@ -232,7 +232,7 @@ export default function LandscapingPage() {
},
{
title: "Direct Contact", items: [
{ label: "(561) 590-0228", href: "tel:5615900228" },
{ label: "(561) 590-0228", onClick: () => window.location.href = "tel:5615900228" },
{ label: "info@prophetelandscape.com" },
],
},
@@ -244,4 +244,4 @@ export default function LandscapingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}