From fa7ab5fbc7c5ca52bf07153fc869c8ed0e2ad046 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 21:34:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 19b9fdb..ee2d459 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,10 @@ import FooterCard from '@/components/sections/footer/FooterCard'; import { MapPin, Phone, Scissors, Star, Sparkles } from 'lucide-react'; export default function LandingPage() { + const handleCallNow = () => { + window.location.href = 'tel:(206)327-9498'; + }; + return ( @@ -48,7 +52,7 @@ export default function LandingPage() { tag="Est. Seattle" tagIcon={Scissors} buttons={[ - { text: "Call Now", href: "tel:(206)327-9498" }, + { text: "Call Now", onClick: handleCallNow }, { text: "Book Appointment", href: "#contact" } ]} imageSrc="http://img.b2bpic.net/free-photo/portrait-bearded-hipster-male-with-stylish-haircut-sits-chair-hairdresser-s-salon_613910-13412.jpg" @@ -90,7 +94,7 @@ export default function LandingPage() { { id: "basic", price: "$25", name: "Standard Haircut", badge: "Popular", badgeIcon: Star, buttons: [ - { text: "Book Now", href: "tel:(206)327-9498" }, + { text: "Book Now", onClick: handleCallNow }, { text: "Learn More", href: "#services" } ], features: [ @@ -100,7 +104,7 @@ export default function LandingPage() { { id: "premium", price: "$40", name: "Beard + Haircut", badge: "Best Value", badgeIcon: Sparkles, buttons: [ - { text: "Book Now", href: "tel:(206)327-9498" }, + { text: "Book Now", onClick: handleCallNow }, { text: "Learn More", href: "#services" } ], features: [ @@ -109,7 +113,7 @@ export default function LandingPage() { }, { id: "deluxe", price: "$60", name: "Premium Experience", buttons: [ - { text: "Book Now", href: "tel:(206)327-9498" }, + { text: "Book Now", onClick: handleCallNow }, { text: "Learn More", href: "#services" } ], features: [ -- 2.49.1