diff --git a/src/app/rooms/page.tsx b/src/app/rooms/page.tsx index 7c47573..ab0c0a5 100644 --- a/src/app/rooms/page.tsx +++ b/src/app/rooms/page.tsx @@ -7,9 +7,13 @@ import ProductCardThree from "@/components/sections/product/ProductCardThree"; import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Heart } from "lucide-react"; +import { Heart, Phone } from "lucide-react"; export default function RoomsPage() { + const handlePhoneCall = () => { + window.location.href = "tel:801-373-7044"; + }; + return ( @@ -47,26 +49,11 @@ export default function RoomsPage() { @@ -139,61 +112,37 @@ export default function RoomsPage() { { items: [ { - label: "Home", - href: "/", - }, + label: "Home", href: "/"}, { - label: "Rooms", - href: "/rooms", - }, + label: "Rooms", href: "/rooms"}, { - label: "Amenities", - href: "/amenities", - }, + label: "Amenities", href: "/amenities"}, { - label: "Gallery", - href: "/gallery", - }, + label: "Gallery", href: "/gallery"}, ], }, { items: [ { - label: "Location", - href: "/location", - }, + label: "Location", href: "/location"}, { - label: "Reviews", - href: "/reviews", - }, + label: "Reviews", href: "/reviews"}, { - label: "Book Now", - href: "/book", - }, + label: "Book Now", href: "/book"}, { - label: "Contact Us", - href: "/contact", - }, + label: "Contact Us", href: "/contact"}, ], }, { items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms & Conditions", - href: "#", - }, + label: "Terms & Conditions", href: "#"}, { - label: "Cancellation Policy", - href: "#", - }, + label: "Cancellation Policy", href: "#"}, { - label: "FAQ", - href: "#", - }, + label: "FAQ", href: "#"}, ], }, ]}