2 Commits

Author SHA1 Message Date
c5efb5aaf2 Merge version_2 into main
Merge version_2 into main
2026-02-17 21:03:35 +00:00
bd2f0e1443 Update src/app/page.tsx 2026-02-17 21:03:30 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroCentered from '@/components/sections/hero/HeroCentered'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout'; import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
@@ -43,20 +43,23 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroBillboardGallery
title="Experience Luxury & Comfort" title="Experience Luxury & Comfort"
description="Discover your perfect retreat at our world-class hotel. Premium accommodations, exceptional service, and unforgettable memories await." description="Discover your perfect retreat at our world-class hotel. Premium accommodations, exceptional service, and unforgettable memories await."
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
avatars={[ tag="Featured Collection"
{ src: "https://img.b2bpic.net/free-photo/young-beautiful-woman-with-cup-coffee-cafe_624325-55.jpg", alt: "Guest 1" }, mediaItems={[
{ src: "https://img.b2bpic.net/free-photo/woman-wearing-pajamas-while-sitting-bed_273609-13211.jpg", alt: "Guest 2" }, { imageSrc: "https://img.b2bpic.net/free-photo/young-beautiful-woman-with-cup-coffee-cafe_624325-55.jpg", imageAlt: "Gallery 1" },
{ src: "https://img.b2bpic.net/free-photo/confident-young-chambermaid-standing-hotel-room-talking-mobile-phone_23-2148033267.jpg", alt: "Guest 3" } { imageSrc: "https://img.b2bpic.net/free-photo/woman-wearing-pajamas-while-sitting-bed_273609-13211.jpg", imageAlt: "Gallery 2" },
{ imageSrc: "https://img.b2bpic.net/free-photo/confident-young-chambermaid-standing-hotel-room-talking-mobile-phone_23-2148033267.jpg", imageAlt: "Gallery 3" },
{ imageSrc: "https://img.b2bpic.net/free-photo/luxury-swimming-pool-beach_657883-734.jpg", imageAlt: "Gallery 4" },
{ imageSrc: "https://img.b2bpic.net/free-photo/hotel-room-luxury-resort_53876-138105.jpg", imageAlt: "Gallery 5" }
]} ]}
avatarText="Trusted by 5000+ satisfied guests"
buttons={[ buttons={[
{ text: "Book Your Stay", href: "#contact" }, { text: "Book Your Stay", href: "#contact" },
{ text: "Explore Rooms", href: "#rooms" } { text: "Explore Rooms", href: "#rooms" }
]} ]}
mediaAnimation="blur-reveal"
/> />
</div> </div>