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: "#" }, ], }, ]}