diff --git a/src/app/page.tsx b/src/app/page.tsx
index 518f9e7..fd0c290 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -11,6 +11,13 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
+const handleBookNow = () => {
+ const element = document.getElementById('contact');
+ if (element) {
+ element.scrollIntoView({ behavior: 'smooth' });
+ }
+};
+
export default function LandingPage() {
return (