diff --git a/src/app/page.tsx b/src/app/page.tsx index d2274de..5b72f8c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,6 +16,13 @@ import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCar import { Diamond, Sparkles } from "lucide-react"; export default function LandingPage() { + const handleBookingClick = () => { + const element = document.getElementById('contact'); + if (element) { + element.scrollIntoView({ behavior: 'smooth' }); + } + }; + return ( ); -} \ No newline at end of file +}