From 23463d4b6856ab145b473e8e1f980e7c6a50789f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 2 May 2026 23:18:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ba0f12b..9438fac 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,15 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { AlertCircle, Calendar, TrendingDown, MapPin } from "lucide-react"; +import { MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -76,9 +73,9 @@ export default function LandingPage() { textboxLayout="default" gridVariant="three-columns-all-equal-width" products={[ - { id: "r1", brand: "Standard", name: "Deluxe Queen", price: "3,310 MAD", rating: 4.8, imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-beautiful-comtemporary-luxury-bedroom-suite-hotel-with-tv_105762-2064.jpg" }, - { id: "r2", brand: "Premium", name: "Executive View", price: "4,200 MAD", rating: 4.9, imageSrc: "http://img.b2bpic.net/free-photo/apartment-comfortable-pillow-hotel-suite_1203-5168.jpg" }, - { id: "r3", brand: "Luxury", name: "Skyline Suite", price: "5,800 MAD", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bedroom-int_1203-2347.jpg" }, + { id: "r1", brand: "Standard", name: "Deluxe Queen", price: "3,310 MAD", rating: 4.8, reviewCount: "452 reviews", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-beautiful-comtemporary-luxury-bedroom-suite-hotel-with-tv_105762-2064.jpg" }, + { id: "r2", brand: "Premium", name: "Executive View", price: "4,200 MAD", rating: 4.9, reviewCount: "812 reviews", imageSrc: "http://img.b2bpic.net/free-photo/apartment-comfortable-pillow-hotel-suite_1203-5168.jpg" }, + { id: "r3", brand: "Luxury", name: "Skyline Suite", price: "5,800 MAD", rating: 5, reviewCount: "120 reviews", imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bedroom-int_1203-2347.jpg" }, ]} title="Choose Your Sanctuary" description="Discover our modern, premium rooms designed for ultimate comfort." -- 2.49.1