From 3768dfeb814fb2aeece347627be663323dde1dea Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 8 Apr 2026 00:43:07 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 105 +++++++++++++++-------------------------------- 1 file changed, 34 insertions(+), 71 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1cc2d72..3d7d869 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,14 +29,10 @@ export default function LandingPage() { @@ -142,14 +113,11 @@ export default function LandingPage() {
@@ -160,24 +128,19 @@ export default function LandingPage() { columns={[ { title: "Information", items: [ - { - label: "Contact Us", href: "#contact"}, - { - label: "Booking Policy", href: "#"}, + { label: "Contact Us", onClick: () => document.getElementById("contact")?.scrollIntoView({ behavior: "smooth" }) }, + { label: "Booking Policy", href: "#" }, ], }, { title: "Location", items: [ - { - label: "9841 Greenbelt Rd. #207, Lanham, MD 20706", href: "#"}, + { label: "9841 Greenbelt Rd. #207, Lanham, MD 20706", href: "#" }, ], }, { title: "Follow Us", items: [ - { - label: "Instagram", href: "#"}, - { - label: "Facebook", href: "#"}, + { label: "Instagram", href: "#" }, + { label: "Facebook", href: "#" }, ], }, ]} -- 2.49.1