From d04855fd7b638bfc83591f37ec811a21d7cd30e6 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 20:09:42 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c27eaf1..150ebc6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,9 +13,12 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia import { Award, Calendar, DollarSign, User } from "lucide-react"; export default function LandingPage() { - const handleWhatsAppClick = () => { - const message = encodeURIComponent("Hi! I'd like to book an appointment at Kasa de Belleza. Could you help me with a reservation?"); - window.open(`https://wa.me/14070000000?text=${message}`, '_blank'); + const handleMessengerClick = () => { + window.open("https://m.me/your-facebook-page-id", "_blank"); + }; + + const handleFacebookPageClick = () => { + window.open("https://facebook.com/your-business-page", "_blank"); }; return ( @@ -40,7 +43,7 @@ export default function LandingPage() { { name: "Reviews", id: "testimonials" }, { name: "Contact", id: "contact" }, ]} - button={{ text: "Book Appointment", onClick: handleWhatsAppClick }} + button={{ text: "Book via Messenger", onClick: handleMessengerClick }} brandName="Kasa de Belleza" /> @@ -50,7 +53,7 @@ export default function LandingPage() { background={{ variant: "gradient-bars" }} title="Expert Care. Personal Touch. Beautiful Results." description="Orlando’s premier destination for expert hair color, precision nails, and the dedicated attention you deserve." - buttons={[{ text: "Schedule Your Transformation", onClick: handleWhatsAppClick }]} + buttons={[{ text: "Book Appointment", onClick: handleMessengerClick }]} imageSrc="http://img.b2bpic.net/free-photo/close-up-details-hairdresser-salon_23-2149205859.jpg" imageAlt="Salon transformation" /> @@ -107,10 +110,11 @@ export default function LandingPage() { @@ -122,11 +126,11 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { id: "1", title: "Where are you located?", content: "1794 N Chickasaw Trail, Orlando, FL." }, - { id: "2", title: "How to book?", content: "Click the 'Book Appointment' button in the header!" } + { id: "2", title: "How to book?", content: "Click the 'Book via Messenger' button in the header!" } ]} ctaTitle="Ready to look and feel your best?" ctaDescription="Visit us at 1794 N Chickasaw Trail, Orlando, FL." - ctaButton={{ text: "Book Your Visit", onClick: handleWhatsAppClick }} + ctaButton={{ text: "Book Appointment", onClick: handleMessengerClick }} ctaIcon={Calendar} /> @@ -135,7 +139,7 @@ export default function LandingPage() { -- 2.49.1