Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-16 18:52:14 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
@@ -42,21 +42,44 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText="Zarafshon Boutique Hotel"
<HeroBillboardTestimonial
title="Zarafshon Boutique Hotel"
description="Experience luxury inside the ancient walls of Ichan Kala. Authentic hospitality meets modern comfort in our boutique hotel, perfectly positioned within Khiva's UNESCO World Heritage site."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Book Now", href: "#booking" },
{ text: "WhatsApp", href: "https://wa.me/+998933001234" },
{ text: "View Rooms", href: "#rooms" }
{ text: "WhatsApp", href: "https://wa.me/+998933001234" }
]}
buttonAnimation="blur-reveal"
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/valletta-waterfront-malta_181624-749.jpg"
imageAlt="Ancient Khiva old city at sunset with golden light"
mediaAnimation="blur-reveal"
frameStyle="card"
testimonials={[
{
name: "Sarah Mitchell", handle: "@wanderlustchronicles", testimonial: "An absolutely magical experience. The hotel beautifully preserves Khiva's heritage while providing modern comfort. The courtyard is a perfect oasis!", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-girls-smiling-laughing-resting-cafe-shot-from-outside_176420-6938.jpg", imageAlt: "Sarah Mitchell travel blogger"
},
{
name: "Marco Rossi", handle: "@marco_arch", testimonial: "As an architect, I was impressed by how thoughtfully every detail was designed. The traditional Uzbek elements are authentic yet comfortable.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/couple-sitting-together-chair-safari-vacation_107420-9673.jpg", imageAlt: "Marco Rossi architect from Italy"
},
{
name: "Yuki Tanaka", handle: "@yuki_photos", testimonial: "Perfect location for photography. Every corner of this hotel tells a story. The staff's hospitality was beyond expectations.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-brunette-woman-is-enjoying-morning-with-cup-hot-drink-book-her-hands-rest-relaxation-concept_169016-10477.jpg", imageAlt: "Yuki Tanaka photographer from Japan"
},
{
name: "Lisa Schmidt", handle: "@professorlisa", testimonial: "Staying here felt like stepping back in time while enjoying all modern amenities. The breakfast was a culinary journey through Uzbek traditions.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/shy-charming-woman-with-curly-hair-wearing-denim-shirt-listening-music_291650-819.jpg", imageAlt: "Lisa Schmidt professor from Germany"
}
]}
testimonialRotationInterval={5000}
useInvertedBackground={false}
tag="Highly Rated Boutique"
tagIcon={Star}
tagAnimation="blur-reveal"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/two-young-beautiful-girls-smiling-laughing-resting-cafe-shot-from-outside_176420-6938.jpg", alt: "Guest" },
{ src: "http://img.b2bpic.net/free-photo/couple-sitting-together-chair-safari-vacation_107420-9673.jpg", alt: "Guest" },
{ src: "http://img.b2bpic.net/free-photo/young-brunette-woman-is-enjoying-morning-with-cup-hot-drink-book-her-hands-rest-relaxation-concept_169016-10477.jpg", alt: "Guest" }
]}
avatarText="250+ Happy Guests"
ariaLabel="Hero section - Zarafshon Boutique Hotel"
/>
</div>
@@ -351,4 +374,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}