From 73de6ba85df528520ff72b87e87d272ba342fa38 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 07:50:32 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 39 ++++++++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 76b8928..60c53c5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,9 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FeatureBento from '@/components/sections/feature/FeatureBento'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Award, CheckCircle, Heart, MapPin, Shield, Sparkles, Star, Users, Zap } from 'lucide-react'; +import { Award, CheckCircle, Heart, MapPin, Shield, Sparkles, Star, Users, Zap, Phone, MessageCircle } from 'lucide-react'; export default function LandingPage() { return ( @@ -33,6 +33,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "About", id: "about" }, { name: "Reviews", id: "reviews" }, + { name: "Location", id: "contact" }, { name: "FAQ", id: "faq" } ]} button={{ text: "Book Appointment", href: "#contact" }} @@ -191,17 +192,29 @@ export default function LandingPage() {
- { + const phone = data.phone.replace(/\D/g, ''); + const name = encodeURIComponent(data.name); + const message = encodeURIComponent(`Hi! I'm ${data.name} and I'd like to book an appointment at Ginza Beauty.`); + window.open(`https://wa.me/971434071171?text=${message}`, '_blank'); + }} />
@@ -226,7 +239,7 @@ export default function LandingPage() { { title: "Support", items: [ { label: "FAQ", href: "#faq" }, - { label: "Contact Us", href: "#contact" }, + { label: "Location", href: "#contact" }, { label: "Aftercare Guide", href: "#" } ] }, -- 2.49.1