6 Commits

Author SHA1 Message Date
d017a2817f Update src/app/page.tsx 2026-04-19 12:31:35 +00:00
20f9617b78 Update src/app/page.tsx 2026-04-19 12:31:11 +00:00
0b6591b567 Update src/app/page.tsx 2026-04-19 12:30:28 +00:00
eeaf53184f Merge version_4 into main
Merge version_4 into main
2026-04-19 12:30:18 +00:00
0fa43c70d0 Update src/app/page.tsx 2026-04-19 12:30:12 +00:00
b6ebb2def6 Merge version_2 into main
Merge version_2 into main
2026-04-19 12:25:25 +00:00

View File

@@ -10,7 +10,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Award, Coffee, MapPin, ShieldCheck, Smile, Sun } from "lucide-react"; import { Award, Coffee, MapPin, ShieldCheck, Smile, Sun } from "lucide-react";
@@ -127,18 +127,18 @@ export default function LandingPage() {
</div> </div>
<div id="rooms" data-section="rooms"> <div id="rooms" data-section="rooms">
<ProductCardFour <ProductCardThree
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
gridVariant="two-columns-alternating-heights" gridVariant="uniform-all-items-equal"
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ id: "r1", name: "Standard Single", price: "₹1000/night", variant: "Compact", imageSrc: "http://img.b2bpic.net/free-photo/close-up-romantic-breakfast-bed-arrangement_23-2150956523.jpg" }, { id: "r1", name: "Standard Single", price: "₹1000/night", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CZmAX6euz7HPR6bz0p4gANhPKC/uploaded-1776601854608-cbhtxur0.jpg?_wi=1" },
{ id: "r2", name: "Deluxe Single", price: "₹1300/night", variant: "Comfort", imageSrc: "http://img.b2bpic.net/free-photo/white-pillow-blanket-bed-decoration-interior-bedroom_74190-13578.jpg" }, { id: "r2", name: "Deluxe Single", price: "₹1300/night", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CZmAX6euz7HPR6bz0p4gANhPKC/uploaded-1776601854608-cbhtxur0.jpg?_wi=2" },
{ id: "r3", name: "Standard Double", price: "₹2100/night", variant: "Spacious", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg" }, { id: "r3", name: "Standard Double", price: "₹2100/night", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CZmAX6euz7HPR6bz0p4gANhPKC/uploaded-1776601854608-cbhtxur0.jpg?_wi=3" },
{ id: "r4", name: "Deluxe Double", price: "₹2500/night", variant: "Balcony", imageSrc: "http://img.b2bpic.net/free-photo/modern-styled-entryway_23-2150695961.jpg" }, { id: "r4", name: "Deluxe Double", price: "₹2500/night", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CZmAX6euz7HPR6bz0p4gANhPKC/uploaded-1776601854608-cbhtxur0.jpg?_wi=4" },
{ id: "r5", name: "Executive Suite", price: "₹3500/night", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hotel-insights-details_23-2149160768.jpg" }, { id: "r5", name: "Executive Suite", price: "₹3500/night", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CZmAX6euz7HPR6bz0p4gANhPKC/uploaded-1776601854608-cbhtxur0.jpg?_wi=5" },
{ id: "r6", name: "Family Suite", price: "₹4500/night", variant: "Large", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-beautiful-comtemporary-luxury-bedroom-suite-hotel-with-tv_105762-2071.jpg" }, { id: "r6", name: "Family Suite", price: "₹4500/night", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CZmAX6euz7HPR6bz0p4gANhPKC/uploaded-1776601854608-cbhtxur0.jpg?_wi=6" },
]} ]}
title="Comfortable Stays" title="Comfortable Stays"
description="Explore our range of well-appointed rooms, designed for both business and leisure travelers." description="Explore our range of well-appointed rooms, designed for both business and leisure travelers."
@@ -233,4 +233,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }