From dcc53219d8879027390f368d90fdaf4e6efff6d6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 14:28:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 74c0a24..a29abad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -68,15 +68,15 @@ export default function LandingPage() { plans={[ { id: "s1", name: "Skin Fade", price: "$45", features: ["Precision Taper", "Blade Work", "Hot Towel"], - buttons: [{ text: "Select" }], + buttons: [{ text: "Book Now", href: "#contact" }], }, { id: "s2", name: "Beard Trim", price: "$30", features: ["Shape & Line Up", "Beard Oil", "Razor Edge"], - buttons: [{ text: "Select" }], + buttons: [{ text: "Book Now", href: "#contact" }], }, { id: "s3", name: "Full Service", price: "$75", features: ["Haircut & Beard", "Facial Treatment", "Style Consult"], - buttons: [{ text: "Select" }], + buttons: [{ text: "Book Now", href: "#contact" }], }, ]} title="Our Services" @@ -125,7 +125,7 @@ export default function LandingPage() { background={{ variant: "plain" }} useInvertedBackground={false} buttons={[ - { text: "Book Online", href: "#" }, + { text: "Book Online", href: "https://calendly.com/your-booking-link" }, { text: "Call (555) 123-4567", href: "tel:5551234567" } ]} /> @@ -135,7 +135,7 @@ export default function LandingPage() {