From 345604437a1166db59d058f39e530fccd127a9dc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 11 May 2026 00:41:31 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) 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 +} -- 2.49.1