From 93124b0b954e1805473ebf0405be39af7596c8d0 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 4 Apr 2026 02:25:49 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 260 ++++++++++++----------------------------------- 1 file changed, 65 insertions(+), 195 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fd59c7f..c7e430a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { Bell, Car, Clock, Crown, Map, Mic, Star, Users, Utensils, Wifi } from "lucide-react"; +import { Bell, Car, Clock, Crown, Map, Mic, Star, Users, Utensils, Wifi, ChefHat, Anchor } from "lucide-react"; export default function LandingPage() { return ( @@ -30,109 +30,70 @@ export default function LandingPage() {
@@ -146,41 +107,17 @@ export default function LandingPage() { useInvertedBackground={true} products={[ { - id: "s1", - name: "Presidential Suite", - price: "₹8,500", - imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-furniture-shop-store-interior_74190-4976.jpg?_wi=1", - }, + id: "s1", name: "Presidential Suite", price: "₹8,500", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-furniture-shop-store-interior_74190-4976.jpg"}, { - id: "s2", - name: "Executive Room", - price: "₹5,200", - imageSrc: "http://img.b2bpic.net/free-photo/luxury-bathtub-towel-inside-bedroom-hotel_1150-10838.jpg?_wi=1", - }, + id: "s2", name: "Executive Room", price: "₹5,200", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bathtub-towel-inside-bedroom-hotel_1150-10838.jpg"}, { - id: "s3", - name: "Deluxe Retreat", - price: "₹3,900", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-frankenstein-sitting-table_23-2149636929.jpg?_wi=1", - }, + id: "s3", name: "Deluxe Retreat", price: "₹3,900", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-frankenstein-sitting-table_23-2149636929.jpg"}, { - id: "s4", - name: "Royal Chamber", - price: "₹12,000", - imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-furniture-shop-store-interior_74190-4976.jpg?_wi=2", - }, + id: "s4", name: "Royal Chamber", price: "₹12,000", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-furniture-shop-store-interior_74190-4976.jpg"}, { - id: "s5", - name: "Signature Suite", - price: "₹9,500", - imageSrc: "http://img.b2bpic.net/free-photo/luxury-bathtub-towel-inside-bedroom-hotel_1150-10838.jpg?_wi=2", - }, + id: "s5", name: "Signature Suite", price: "₹9,500", imageSrc: "http://img.b2bpic.net/free-photo/luxury-bathtub-towel-inside-bedroom-hotel_1150-10838.jpg"}, { - id: "s6", - name: "Heritage Room", - price: "₹4,500", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-frankenstein-sitting-table_23-2149636929.jpg?_wi=2", - }, + id: "s6", name: "Heritage Room", price: "₹4,500", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-frankenstein-sitting-table_23-2149636929.jpg"}, ]} title="Our Accommodations" description="Discover spacious suites designed with pristine linens, warm golden lighting, and premium fixtures for ultimate relaxation." @@ -190,82 +127,56 @@ export default function LandingPage() {
@@ -313,20 +209,15 @@ export default function LandingPage() {
@@ -336,54 +227,33 @@ export default function LandingPage() { logoText="Royal Residency" columns={[ { - title: "About Us", - items: [ + title: "About Us", items: [ { - label: "Our Heritage", - href: "#hero", - }, + label: "Our Heritage", href: "#hero"}, { - label: "Careers", - href: "#", - }, + label: "Careers", href: "#"}, { - label: "Location", - href: "#", - }, + label: "Location", href: "#"}, ], }, { - title: "Bookings", - items: [ + title: "Bookings", items: [ { - label: "Rooms", - href: "#rooms", - }, + label: "Rooms", href: "#rooms"}, { - label: "Offers", - href: "#", - }, + label: "Offers", href: "#"}, { - label: "Contact", - href: "#contact", - }, + label: "Contact", href: "#contact"}, ], }, { - title: "Guest Info", - items: [ + title: "Guest Info", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Stay", - href: "#", - }, + label: "Terms of Stay", href: "#"}, { - label: "FAQ", - href: "#", - }, + label: "FAQ", href: "#"}, ], }, ]} -- 2.49.1