Update src/app/location/page.tsx

This commit is contained in:
2026-03-14 09:42:38 +00:00
parent 9fc7b52573
commit e67a89c7d0

View File

@@ -7,7 +7,7 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { MapPin, Navigation } from "lucide-react";
import { MapPin, Navigation, Phone } from "lucide-react";
export default function LocationPage() {
const navItems = [
@@ -46,6 +46,10 @@ export default function LocationPage() {
},
];
const handlePhoneCall = () => {
window.location.href = "tel:801-373-7044";
};
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -64,9 +68,7 @@ export default function LocationPage() {
brandName="Provo River Inn"
navItems={navItems}
button={{
text: "Book Your Stay",
href: "/book",
}}
text: "Book Your Stay", href: "/book"}}
/>
</div>
@@ -89,36 +91,16 @@ export default function LocationPage() {
<FeatureCardMedia
features={[
{
id: "provo-river-parkway",
title: "Provo River Parkway",
description: "Beautiful walking and biking trails along the scenic river, perfect for morning runs and peaceful nature walks.",
tag: "Outdoor Recreation",
imageSrc: "http://img.b2bpic.net/free-photo/new-york-city-central-park_649448-4109.jpg?_wi=3",
imageAlt: "Scenic river walking path peaceful nature"
id: "provo-river-parkway", title: "Provo River Parkway", description: "Beautiful walking and biking trails along the scenic river, perfect for morning runs and peaceful nature walks.", tag: "Outdoor Recreation", imageSrc: "http://img.b2bpic.net/free-photo/new-york-city-central-park_649448-4109.jpg?_wi=3", imageAlt: "Scenic river walking path peaceful nature"
},
{
id: "local-dining",
title: "Nearby Dining",
description: "Walking distance to casual restaurants, local favorites, and vibrant dining neighborhoods with diverse cuisine options.",
tag: "Dining",
imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-outside_23-2149033596.jpg?_wi=2",
imageAlt: "Casual restaurant dining outdoor seating friendly"
id: "local-dining", title: "Nearby Dining", description: "Walking distance to casual restaurants, local favorites, and vibrant dining neighborhoods with diverse cuisine options.", tag: "Dining", imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-outside_23-2149033596.jpg?_wi=2", imageAlt: "Casual restaurant dining outdoor seating friendly"
},
{
id: "attractions",
title: "Attractions & Shopping",
description: "Close to BYU campus, Utah Valley museums, shopping centers, and family-friendly attractions for all ages.",
tag: "Entertainment",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-black-suit-office_1157-37456.jpg?_wi=11",
imageAlt: "Hotel lobby welcoming entrance friendly reception"
id: "attractions", title: "Attractions & Shopping", description: "Close to BYU campus, Utah Valley museums, shopping centers, and family-friendly attractions for all ages.", tag: "Entertainment", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-black-suit-office_1157-37456.jpg?_wi=11", imageAlt: "Hotel lobby welcoming entrance friendly reception"
},
{
id: "business-district",
title: "Business District",
description: "Convenient proximity to corporate offices and business centers, making it ideal for business travelers.",
tag: "Business",
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-black-suit-office_1157-37456.jpg?_wi=12",
imageAlt: "Hotel lobby welcoming entrance friendly reception"
id: "business-district", title: "Business District", description: "Convenient proximity to corporate offices and business centers, making it ideal for business travelers.", tag: "Business", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-black-suit-office_1157-37456.jpg?_wi=12", imageAlt: "Hotel lobby welcoming entrance friendly reception"
}
]}
animationType="slide-up"
@@ -133,18 +115,19 @@ export default function LocationPage() {
<div id="contact-cta" data-section="contact-cta" className="py-20 px-6">
<ContactSplit
tag="Ready to Visit?"
title="Book Your Comfortable Stay"
description="Reserve your room today and discover why guests love our peaceful location and convenient access to everything Provo offers."
tagIcon={MapPin}
title="Call to Book Your Stay"
description="Direct line to our reservations team. Quick, easy, and immediate confirmation of your stay."
tagIcon={Phone}
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/businesswoman-black-suit-office_1157-37456.jpg?_wi=13"
imageAlt="Hotel lobby welcoming entrance friendly reception"
mediaAnimation="blur-reveal"
mediaPosition="right"
inputPlaceholder="Enter your email for booking info"
buttonText="Check Availability"
termsText="By clicking Check Availability, you're confirming that you agree with our Terms and Conditions."
inputPlaceholder="Call: 801-373-7044"
buttonText="Call to Book"
termsText="Phone lines available 24/7. Our team is ready to help you secure the perfect room."
onSubmit={handlePhoneCall}
/>
</div>