Update src/app/page.tsx
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
@@ -38,35 +38,26 @@ export default function HomePage() {
|
||||
navItems={navItems}
|
||||
brandName="Alpine Calm"
|
||||
button={{
|
||||
text: "Book Now", href: "/contact"}}
|
||||
text: "Book Now", href: "/contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
<HeroOverlay
|
||||
title="Alpine Calm Awaits"
|
||||
description="A Swiss retreat designed for quiet moments and panoramic beauty. Experience alpine serenity, refined craftsmanship, and the peaceful solitude of the mountains."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Alpine Sanctuary"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=1"
|
||||
imageAlt="Alpine lake with panoramic mountain view"
|
||||
textPosition="bottom-left"
|
||||
showBlur={true}
|
||||
showDimOverlay={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now", href: "/contact"},
|
||||
text: "Book Now", href: "/contact"
|
||||
},
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "carousel-1", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=1", imageAlt: "Alpine lake with panoramic mountain view"},
|
||||
{
|
||||
id: "carousel-2", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=2", imageAlt: "Alpine landscape at sunrise"},
|
||||
{
|
||||
id: "carousel-3", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=3", imageAlt: "Mountain peaks with snow"},
|
||||
{
|
||||
id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=4", imageAlt: "Alpine valley vista"},
|
||||
{
|
||||
id: "carousel-5", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=5", imageAlt: "Serene alpine landscape"},
|
||||
{
|
||||
id: "carousel-6", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-view-lake-gosauseen-dachstein-austria-surrounded-by-lush-trees-snowy-mountains_181624-61350.jpg?_wi=6", imageAlt: "Mountain ranges at dusk"},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={5000}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -96,11 +87,14 @@ export default function HomePage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "room-alpine-view", name: "Alpine View Room", price: "CHF 280–380", variant: "32 m² • King Bed • Mountain View", imageSrc: "http://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920954.jpg?_wi=2", imageAlt: "Alpine View Room with panoramic windows"},
|
||||
id: "room-alpine-view", name: "Alpine View Room", price: "CHF 280–380", variant: "32 m² • King Bed • Mountain View", imageSrc: "http://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920954.jpg?_wi=2", imageAlt: "Alpine View Room with panoramic windows"
|
||||
},
|
||||
{
|
||||
id: "room-garden", name: "Garden Room", price: "CHF 220–300", variant: "24 m² • Queen Bed • Garden Access", imageSrc: "http://img.b2bpic.net/free-photo/happy-relaxed-asian-woman-laying-couch-home-with-laptop-listening-podcast-enjoying-weekend_1258-83737.jpg?_wi=1", imageAlt: "Garden Room with terrace access"},
|
||||
id: "room-garden", name: "Garden Room", price: "CHF 220–300", variant: "24 m² • Queen Bed • Garden Access", imageSrc: "http://img.b2bpic.net/free-photo/happy-relaxed-asian-woman-laying-couch-home-with-laptop-listening-podcast-enjoying-weekend_1258-83737.jpg?_wi=1", imageAlt: "Garden Room with terrace access"
|
||||
},
|
||||
{
|
||||
id: "apartment-family", name: "Family Apartment", price: "CHF 450–650", variant: "65 m² • 2 Bedrooms • Kitchen • Living Space", imageSrc: "http://img.b2bpic.net/free-photo/happy-relaxed-asian-woman-laying-couch-home-with-laptop-listening-podcast-enjoying-weekend_1258-83737.jpg?_wi=2", imageAlt: "Family Apartment with full kitchen"},
|
||||
id: "apartment-family", name: "Family Apartment", price: "CHF 450–650", variant: "65 m² • 2 Bedrooms • Kitchen • Living Space", imageSrc: "http://img.b2bpic.net/free-photo/happy-relaxed-asian-woman-laying-couch-home-with-laptop-listening-podcast-enjoying-weekend_1258-83737.jpg?_wi=2", imageAlt: "Family Apartment with full kitchen"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -131,13 +125,16 @@ export default function HomePage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "testimonial-1", name: "Catherine Müller", role: "Creative Director", company: "Design Studio, Zurich", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=1", imageAlt: "Catherine Müller"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=1", imageAlt: "Catherine Müller"
|
||||
},
|
||||
{
|
||||
id: "testimonial-2", name: "James Richardson", role: "Executive", company: "Private Investor", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=2", imageAlt: "James Richardson"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=2", imageAlt: "James Richardson"
|
||||
},
|
||||
{
|
||||
id: "testimonial-3", name: "Sophie Leclerc", role: "Author", company: "Independent Writer", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=3", imageAlt: "Sophie Leclerc"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=3", imageAlt: "Sophie Leclerc"
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "98%", label: "Guest Satisfaction" },
|
||||
@@ -156,17 +153,23 @@ export default function HomePage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1", title: "What is included in the room rate?", content: "Each room includes daily housekeeping, premium bedding, luxurious toiletries, high-speed WiFi, and access to our private library and mountain terrace. Continental breakfast is available upon request at CHF 18 per person."},
|
||||
id: "faq-1", title: "What is included in the room rate?", content: "Each room includes daily housekeeping, premium bedding, luxurious toiletries, high-speed WiFi, and access to our private library and mountain terrace. Continental breakfast is available upon request at CHF 18 per person."
|
||||
},
|
||||
{
|
||||
id: "faq-2", title: "Is parking available?", content: "Yes, secure parking is available free of charge in our dedicated lot. For guests arriving by car, we provide complimentary arrival and departure parking. EV charging stations are available upon request."},
|
||||
id: "faq-2", title: "Is parking available?", content: "Yes, secure parking is available free of charge in our dedicated lot. For guests arriving by car, we provide complimentary arrival and departure parking. EV charging stations are available upon request."
|
||||
},
|
||||
{
|
||||
id: "faq-3", title: "Do you accommodate pets?", content: "Well-behaved pets are welcome at Alpine Calm. A small surcharge of CHF 25 per night applies. We provide water bowls, beds, and designated outdoor areas. Please notify us at the time of booking."},
|
||||
id: "faq-3", title: "Do you accommodate pets?", content: "Well-behaved pets are welcome at Alpine Calm. A small surcharge of CHF 25 per night applies. We provide water bowls, beds, and designated outdoor areas. Please notify us at the time of booking."
|
||||
},
|
||||
{
|
||||
id: "faq-4", title: "What languages are spoken?", content: "Our staff speaks German, French, English, and Italian fluently. We welcome international guests and provide multilingual information upon request."},
|
||||
id: "faq-4", title: "What languages are spoken?", content: "Our staff speaks German, French, English, and Italian fluently. We welcome international guests and provide multilingual information upon request."
|
||||
},
|
||||
{
|
||||
id: "faq-5", title: "Are your facilities accessible?", content: "Alpine Calm is committed to accessibility. We offer ground-floor rooms with accessible bathrooms, elevator access, and designated parking spaces. Please contact us in advance to discuss specific requirements."},
|
||||
id: "faq-5", title: "Are your facilities accessible?", content: "Alpine Calm is committed to accessibility. We offer ground-floor rooms with accessible bathrooms, elevator access, and designated parking spaces. Please contact us in advance to discuss specific requirements."
|
||||
},
|
||||
{
|
||||
id: "faq-6", title: "What is the cancellation policy?", content: "Reservations may be modified or cancelled free of charge up to 7 days before arrival. Cancellations within 7 days are subject to the full room rate charge. Group reservations have different terms; please inquire directly."},
|
||||
id: "faq-6", title: "What is the cancellation policy?", content: "Reservations may be modified or cancelled free of charge up to 7 days before arrival. Cancellations within 7 days are subject to the full room rate charge. Group reservations have different terms; please inquire directly."
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user