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 +}