From fc62be6efc0cd33557a95efe9d3bff9eb0d29a07 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 09:44:48 +0000 Subject: [PATCH] Update src/app/location/page.tsx --- src/app/location/page.tsx | 180 +++++++++++++++++++------------------- 1 file changed, 88 insertions(+), 92 deletions(-) diff --git a/src/app/location/page.tsx b/src/app/location/page.tsx index b9155e5..8961b71 100644 --- a/src/app/location/page.tsx +++ b/src/app/location/page.tsx @@ -1,55 +1,12 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { MapPin, Navigation, Phone } from "lucide-react"; +import { MapPin, Navigation } from "lucide-react"; export default function LocationPage() { - const navItems = [ - { name: "Home", id: "home" }, - { name: "Rooms", id: "rooms" }, - { name: "Amenities", id: "amenities" }, - { name: "Gallery", id: "gallery" }, - { name: "Location", id: "location" }, - { name: "Reviews", id: "reviews" }, - ]; - - const footerColumns = [ - { - items: [ - { label: "Home", href: "/" }, - { label: "Rooms", href: "/rooms" }, - { label: "Amenities", href: "/amenities" }, - { label: "Gallery", href: "/gallery" }, - ], - }, - { - items: [ - { label: "Location", href: "/location" }, - { label: "Reviews", href: "/reviews" }, - { label: "Book Now", href: "/book" }, - { label: "Contact Us", href: "/contact" }, - ], - }, - { - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, - { label: "Cancellation Policy", href: "#" }, - { label: "FAQ", href: "#" }, - ], - }, - ]; - - const handlePhoneCall = () => { - window.location.href = "tel:801-373-7044"; - }; - return ( -