From 33188febba87c9eb0e60f85d3d9d4c6c5255562a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 18:00:57 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f63f2a9..b1158d2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" }} /> @@ -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() { ); -} \ No newline at end of file +} -- 2.49.1