diff --git a/src/app/page.tsx b/src/app/page.tsx index 6b220b1..2facb33 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,6 +12,10 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import { Award, Calendar, Crown, Eye, Feather, Heart, Moon, Shield, Skull, Users, Zap, Image, Star } from 'lucide-react'; export default function LandingPage() { + const handleBooking = () => { + window.open('https://wa.me/7879049854', '_blank'); + }; + return ( @@ -43,7 +47,7 @@ export default function LandingPage() { title="Marks that stay. Stories that haunt." description="Premium tattoo studio specializing in blackwork, fine line, gothic, and curse-inspired designs." buttons={[ - { text: "Book Your Mark", href: "booking" }, + { text: "Book Your Mark", onClick: handleBooking }, { text: "View Gallery", href: "gallery" } ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AlavLWOelEmQkqFRvw6DCMXOiw/uploaded-1773171676236-ae47sr53.png" @@ -96,11 +100,11 @@ export default function LandingPage() {