diff --git a/src/app/page.tsx b/src/app/page.tsx index 155fa21..be4f3ea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,9 +9,16 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Sparkles } from 'lucide-react'; +import { Sparkles, MessageCircle } from 'lucide-react'; export default function LandingPage() { + const handleBookingClick = () => { + const phoneNumber = "6288290739044"; + const message = "Halo, saya ingin membuat booking untuk barbershop"; + const whatsappUrl = `https://wa.me/${phoneNumber}?text=${encodeURIComponent(message)}`; + window.open(whatsappUrl, '_blank'); + }; + return ( @@ -226,4 +234,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}