Merge version_2 into main #7

Merged
bender merged 4 commits from version_2 into main 2026-03-03 19:45:27 +00:00
4 changed files with 21 additions and 21 deletions

View File

@@ -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"
}}
/>
</div>

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>

View File

@@ -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"
}}
/>
</div>
@@ -54,7 +54,7 @@ export default function HomePage() {
showDimOverlay={false}
buttons={[
{
text: "Book Now", href: "/contact"
text: "Book Now", href: "contact"
},
]}
/>

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>