Update src/app/accommodations/page.tsx

This commit is contained in:
2026-03-03 19:45:21 +00:00
parent 1218346954
commit 100b4b9296

View File

@@ -7,10 +7,10 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
const navItems = [
{ name: "Rooms", id: "/accommodations" },
{ name: "Experiences", id: "/accommodations" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Rooms", id: "accommodations" },
{ name: "Experiences", id: "accommodations" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
];
export default function AccommodationsPage() {
@@ -32,7 +32,7 @@ export default function AccommodationsPage() {
navItems={navItems}
brandName="Alpine Calm"
button={{
text: "Book Now", href: "/contact"
text: "Book Now", href: "contact"
}}
/>
</div>