5 Commits

Author SHA1 Message Date
d9429001da Update src/app/page.tsx 2026-01-04 21:16:09 +00:00
313ef4d853 Update src/app/page.tsx 2026-01-04 21:12:48 +00:00
b8e1b11ea9 Update src/app/page.tsx 2026-01-04 21:10:33 +00:00
99a09d5395 Update src/app/page.tsx 2026-01-04 21:08:19 +00:00
0fc321f52d Update src/app/layout.tsx 2026-01-04 21:08:18 +00:00
2 changed files with 11 additions and 22 deletions

View File

@@ -1272,4 +1272,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,17 +1,17 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import TeamCardThree from '@/components/sections/team/TeamCardThree'; import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight'; import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight';
import ContactInline from '@/components/sections/contact/ContactInline'; import ContactInline from '@/components/sections/contact/ContactInline';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Star, Heart, Home, Mountain, Sparkles, Crown, Linkedin, Globe } from "lucide-react"; import { Star, Heart, Home, Mountain, Sparkles, Crown } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -28,7 +28,7 @@ export default function LandingPage() {
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarStyleCentered
brandName="Alpine Luxury" brandName="Alpine Luxury"
navItems={[ navItems={[
{ name: "Rooms", id: "rooms" }, { name: "Rooms", id: "rooms" },
@@ -235,45 +235,34 @@ export default function LandingPage() {
</div> </div>
<div id="team" data-section="team"> <div id="team" data-section="team">
<TeamCardThree <TeamCardFive
title="Meet Our Hospitality Team" title="Meet Our Hospitality Team"
description="Dedicated professionals committed to creating your perfect Alpine experience." description="Dedicated professionals committed to creating your perfect Alpine experience."
tag="Staff" tag="Staff"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
animationType="slide-up" animationType="slide-up"
members={[ team={[
{ {
id: "1", id: "1",
name: "Samuel Eicher", name: "Samuel Eicher",
role: "General Manager", role: "General Manager",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767556199718-irvjkbto.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767556199718-irvjkbto.jpg",
imageAlt: "General Manager Samuel Eicher", imageAlt: "General Manager Samuel Eicher"
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" }
]
}, },
{ {
id: "2", id: "2",
name: "Marta Rossi", name: "Marta Rossi",
role: "Head Concierge", role: "Head Concierge",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767556198938-sapad5cn.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767556198938-sapad5cn.jpg",
imageAlt: "Head Concierge Marta Rossi", imageAlt: "Head Concierge Marta Rossi"
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" }
]
}, },
{ {
id: "3", id: "3",
name: "Chef Andreas Müller", name: "Chef Andreas Müller",
role: "Executive Chef", role: "Executive Chef",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767556200257-fw1n6fwc.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767556200257-fw1n6fwc.jpg",
imageAlt: "Executive Chef Andreas Müller", imageAlt: "Executive Chef Andreas Müller"
socialLinks: [
{ icon: Linkedin, url: "https://linkedin.com" },
{ icon: Globe, url: "https://example.com" }
]
} }
]} ]}
/> />
@@ -393,4 +382,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }