1 Commits

Author SHA1 Message Date
32c1c4a8a6 Update src/app/page.tsx 2025-12-26 08:55:05 +00:00

View File

@@ -1,11 +1,11 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroSplitLarge from '@/components/sections/hero/HeroSplitLarge'; import HeroSplitLarge from '@/components/sections/hero/HeroSplitLarge';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardEighteen from '@/components/sections/feature/FeatureCardEighteen'; import FeatureCardEighteen from '@/components/sections/feature/FeatureCardEighteen';
import TestimonialCardEight from '@/components/sections/testimonial/TestimonialCardEight'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { MapPin } from "lucide-react"; import { MapPin } from "lucide-react";
@@ -28,8 +28,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Experience", id: "experience" }, { name: "Rooms", id: "rooms" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Book Now", id: "contact" } { name: "Book Now", id: "contact" }
]} ]}
@@ -83,80 +82,34 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="experience" data-section="experience"> <div id="rooms" data-section="rooms">
<FeatureCardEighteen <MetricCardTwo
title="Transform Your Journey" title="Our Room Collection"
description="See the difference exceptional hospitality makes. Our guests experience the perfect blend of tradition and modernity." description="Each room is individually designed with attention to detail, blending traditional aesthetics with modern comfort."
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
animationType="slide-up" animationType="slide-up"
negativeCard={{ gridVariant="uniform-all-items-equal"
title: "Standard Hotels", metrics={[
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739075274-i6n0zx4l.jpg",
imageAlt: "Traditional hotel room",
items: [
"Generic accommodations",
"Impersonal service",
"Limited cultural connection",
"Standard amenities only"
]
}}
positiveCard={{
title: "Hotel Setsu",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739076137-mjatfrar.jpg",
imageAlt: "Hotel Setsu luxury experience",
items: [
"Individually designed rooms with character",
"Personalized concierge service",
"Immersive cultural experiences",
"Premium wellness and dining options"
]
}}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardEight
title="Guest Stories"
description="Hear from travelers who have experienced the magic of Hotel Setsu"
textboxLayout="default"
useInvertedBackground="noInvert"
testimonials={[
{ {
id: "1", id: "1",
name: "Sarah Mitchell", value: "12",
role: "Travel Enthusiast", description: "Luxury Suites with private gardens"
company: "New York",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766163678723-295psgl3.jpg",
imageAlt: "Sarah Mitchell"
}, },
{ {
id: "2", id: "2",
name: "James Chen", value: "8",
role: "Business Executive", description: "Premium Rooms with garden views"
company: "Singapore",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184724760-wxlm9bjg.jpg",
imageAlt: "James Chen"
}, },
{ {
id: "3", id: "3",
name: "Emma Rodriguez", value: "6",
role: "Designer", description: "Traditional Tatami rooms"
company: "Barcelona",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766185880597-ieb2jad3.jpg",
imageAlt: "Emma Rodriguez"
}, },
{ {
id: "4", id: "4",
name: "Michael Thompson", value: "100%",
role: "Photographer", description: "Guest Satisfaction Rate"
company: "London",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766185881440-0jwi2e86.jpg",
imageAlt: "Michael Thompson"
} }
]} ]}
/> />
@@ -202,7 +155,7 @@ export default function LandingPage() {
title: "Hotel", title: "Hotel",
items: [ items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Rooms & Suites", href: "#" }, { label: "Rooms & Suites", href: "rooms" },
{ label: "Dining", href: "#" }, { label: "Dining", href: "#" },
{ label: "Wellness", href: "#" } { label: "Wellness", href: "#" }
] ]