Update src/app/practical-info/page.tsx

This commit is contained in:
2026-03-03 19:45:22 +00:00
parent c9840f66b9
commit f6b91fea8f

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 PracticalInfoPage() {
@@ -32,7 +32,7 @@ export default function PracticalInfoPage() {
navItems={navItems}
brandName="Alpine Calm"
button={{
text: "Book Now", href: "/contact"
text: "Book Now", href: "contact"
}}
/>
</div>