From 1218346954f75ed43e735e6d7577c705215cc3cd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:45:20 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7c75505..d56d036 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,10 +7,10 @@ import FaqBase from '@/components/sections/faq/FaqBase'; 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 AboutPage() { @@ -32,7 +32,7 @@ export default function AboutPage() { navItems={navItems} brandName="Alpine Calm" button={{ - text: "Book Now", href: "/contact" + text: "Book Now", href: "contact" }} /> -- 2.49.1 From 100b4b9296f8b3574d96851cd60c4d0e0b024ac7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:45:21 +0000 Subject: [PATCH 2/4] Update src/app/accommodations/page.tsx --- src/app/accommodations/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/accommodations/page.tsx b/src/app/accommodations/page.tsx index 7a01cc0..b22f9b1 100644 --- a/src/app/accommodations/page.tsx +++ b/src/app/accommodations/page.tsx @@ -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" }} /> -- 2.49.1 From c9840f66b912fbf262daae53158268cb26e1042c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:45:22 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 75d9058..a1e45ea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,10 +12,10 @@ import ContactCenter from '@/components/sections/contact/ContactCenter'; 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 HomePage() { @@ -37,7 +37,7 @@ export default function HomePage() { navItems={navItems} brandName="Alpine Calm" button={{ - text: "Book Now", href: "/contact" + text: "Book Now", href: "contact" }} /> @@ -54,7 +54,7 @@ export default function HomePage() { showDimOverlay={false} buttons={[ { - text: "Book Now", href: "/contact" + text: "Book Now", href: "contact" }, ]} /> -- 2.49.1 From f6b91fea8f770923df13b24340c43736eaa493e9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:45:22 +0000 Subject: [PATCH 4/4] Update src/app/practical-info/page.tsx --- src/app/practical-info/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/practical-info/page.tsx b/src/app/practical-info/page.tsx index 34f224d..299cfe9 100644 --- a/src/app/practical-info/page.tsx +++ b/src/app/practical-info/page.tsx @@ -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" }} /> -- 2.49.1