1 Commits

Author SHA1 Message Date
69d677aa53 Update src/app/page.tsx 2025-12-26 09:22:50 +00:00

View File

@@ -5,9 +5,10 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroSplit from '@/components/sections/hero/HeroSplit'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardSix from '@/components/sections/product/ProductCardSix'; import ProductCardSix from '@/components/sections/product/ProductCardSix';
import FeatureCardFifteen from '@/components/sections/feature/FeatureCardFifteen';
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, Sparkles, Droplets, Heart, Wind, Sun } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -28,6 +29,7 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Rooms", id: "rooms" }, { name: "Rooms", id: "rooms" },
{ name: "Activities", id: "activities" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
{ name: "Book Now", id: "contact" } { name: "Book Now", id: "contact" }
]} ]}
@@ -123,6 +125,60 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="activities" data-section="activities">
<FeatureCardFifteen
title="Hotel Activities"
description="Discover our curated selection of wellness and cultural experiences to enhance your stay at Hotel Setsu."
features={[
{
id: "1",
title: "Traditional Spa",
description: "Authentic Japanese hot spring therapy and massage treatments for ultimate relaxation",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739074270-h0qm9zgt.jpg",
imageAlt: "Traditional Japanese spa"
},
{
id: "2",
title: "Tea Ceremony",
description: "Experience the meditative art of Japanese tea ceremony led by certified instructors",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739077288-6btr929u.jpg",
imageAlt: "Tea ceremony experience"
},
{
id: "3",
title: "Cooking Class",
description: "Learn to prepare traditional Kyoto cuisine with our expert culinary team",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739074270-h0qm9zgt.jpg",
imageAlt: "Traditional cooking class"
},
{
id: "4",
title: "Garden Meditation",
description: "Guided meditation sessions in our tranquil zen gardens for inner peace",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739077288-6btr929u.jpg",
imageAlt: "Garden meditation area"
},
{
id: "5",
title: "Temple Tours",
description: "Exclusive guided visits to Kyoto's most sacred temples and historical sites",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739074270-h0qm9zgt.jpg",
imageAlt: "Ancient Kyoto temple"
},
{
id: "6",
title: "Wellness Yoga",
description: "Sunrise yoga sessions overlooking the gardens, blending eastern philosophy with fitness",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766739077288-6btr929u.jpg",
imageAlt: "Yoga wellness session"
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground="noInvert"
/>
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactFaq <ContactFaq
ctaTitle="Ready to Experience Setsu?" ctaTitle="Ready to Experience Setsu?"
@@ -164,7 +220,7 @@ export default function LandingPage() {
items: [ items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Rooms & Suites", href: "rooms" }, { label: "Rooms & Suites", href: "rooms" },
{ label: "Dining", href: "#" }, { label: "Activities", href: "activities" },
{ label: "Wellness", href: "#" } { label: "Wellness", href: "#" }
] ]
}, },