diff --git a/src/app/page.tsx b/src/app/page.tsx index a2cf4c5..8aa9c21 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,9 +10,17 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import ContactFaq from '@/components/sections/contact/ContactFaq'; -import { Award, CheckCircle, HelpCircle, Phone, Shield, Sparkles, Star, Zap } from 'lucide-react'; +import { Award, CheckCircle, HelpCircle, Phone, Shield, Sparkles, Star, Zap, MessageCircle, Calendar } from 'lucide-react'; export default function LandingPage() { + const handleWhatsAppClick = () => { + window.open('https://wa.me/your-whatsapp-number', '_blank'); + }; + + const handleBookingClick = () => { + window.open('https://your-booking-system-url.com', '_blank'); + }; + return ( + +
+ + +
); -} +} \ No newline at end of file