Update src/app/rooms/page.tsx

This commit is contained in:
2026-01-29 13:37:57 +00:00
parent 6df0651ebf
commit 3fc39da4ae

View File

@@ -49,34 +49,16 @@ export default function RoomsPage() {
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
products={[ products={[
{ {
id: "1", id: "1", brand: "Elegance Suites", name: "Deluxe Room", price: "$249/night", rating: 5,
brand: "Elegance Suites", reviewCount: "524", imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", imageAlt: "Deluxe Room with city view"
name: "Deluxe Room",
price: "$249/night",
rating: 5,
reviewCount: "524",
imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg",
imageAlt: "Deluxe Room with city view"
}, },
{ {
id: "2", id: "2", brand: "Elegance Suites", name: "Premium Suite", price: "$399/night", rating: 5,
brand: "Elegance Suites", reviewCount: "687", imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg", imageAlt: "Premium Suite with luxury amenities"
name: "Premium Suite",
price: "$399/night",
rating: 5,
reviewCount: "687",
imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg",
imageAlt: "Premium Suite with luxury amenities"
}, },
{ {
id: "3", id: "3", brand: "Elegance Suites", name: "Penthouse Suite", price: "$599/night", rating: 5,
brand: "Elegance Suites", reviewCount: "412", imageSrc: "https://img.b2bpic.net/free-photo/modern-luxurious-bedroom-elegant-comfortable-design-generated-by-ai_188544-29281.jpg", imageAlt: "Exclusive Penthouse with panoramic views"
name: "Penthouse Suite",
price: "$599/night",
rating: 5,
reviewCount: "412",
imageSrc: "https://img.b2bpic.net/free-photo/modern-luxurious-bedroom-elegant-comfortable-design-generated-by-ai_188544-29281.jpg",
imageAlt: "Exclusive Penthouse with panoramic views"
} }
]} ]}
buttons={[ buttons={[
@@ -94,48 +76,21 @@ export default function RoomsPage() {
animationType="slide-up" animationType="slide-up"
plans={[ plans={[
{ {
id: "weekend", id: "weekend", title: "Weekend Escape", price: "$249", period: "/night", imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", imageAlt: "Weekend package preview", button: { text: "Book Now", href: "contact" },
title: "Weekend Escape",
price: "$249",
period: "/night",
imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg",
imageAlt: "Weekend package preview",
button: { text: "Book Now", href: "contact" },
features: [ features: [
"Complimentary breakfast daily", "Complimentary breakfast daily", "Welcome cocktail at arrival", "Late checkout until 2 PM", "Spa credit of $50"
"Welcome cocktail at arrival",
"Late checkout until 2 PM",
"Spa credit of $50"
] ]
}, },
{ {
id: "luxury", id: "luxury", title: "Luxury Package", price: "$399", period: "/night", imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg", imageAlt: "Luxury package amenities", button: { text: "Book Now", href: "contact" },
title: "Luxury Package",
price: "$399",
period: "/night",
imageSrc: "https://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg",
imageAlt: "Luxury package amenities",
button: { text: "Book Now", href: "contact" },
features: [ features: [
"All-inclusive dining experience", "All-inclusive dining experience", "Spa treatment included daily", "Private airport transfers", "Personal concierge available 24/7"
"Spa treatment included daily",
"Private airport transfers",
"Personal concierge available 24/7"
] ]
}, },
{ {
id: "penthouse", id: "penthouse", title: "Penthouse Exclusive", price: "$599", period: "/night", imageSrc: "https://img.b2bpic.net/free-photo/modern-luxurious-bedroom-elegant-comfortable-design-generated-by-ai_188544-29281.jpg", imageAlt: "Penthouse exclusive experience", button: { text: "Book Now", href: "contact" },
title: "Penthouse Exclusive",
price: "$599",
period: "/night",
imageSrc: "https://img.b2bpic.net/free-photo/modern-luxurious-bedroom-elegant-comfortable-design-generated-by-ai_188544-29281.jpg",
imageAlt: "Penthouse exclusive experience",
button: { text: "Book Now", href: "contact" },
features: [ features: [
"Premium suite with panoramic views", "Premium suite with panoramic views", "Michelin-starred dining for two nightly", "Dedicated butler service", "Complimentary airport transfers"
"Michelin-starred dining for two nightly",
"Dedicated butler service",
"Complimentary airport transfers"
] ]
} }
]} ]}
@@ -161,8 +116,7 @@ export default function RoomsPage() {
<FooterBaseReveal <FooterBaseReveal
columns={[ columns={[
{ {
title: "Hotel Info", title: "Hotel Info", items: [
items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Rooms & Suites", href: "product" }, { label: "Rooms & Suites", href: "product" },
{ label: "Amenities", href: "feature" }, { label: "Amenities", href: "feature" },
@@ -170,8 +124,7 @@ export default function RoomsPage() {
] ]
}, },
{ {
title: "Guest Services", title: "Guest Services", items: [
items: [
{ label: "Reservations", href: "contact" }, { label: "Reservations", href: "contact" },
{ label: "Room Service", href: "#" }, { label: "Room Service", href: "#" },
{ label: "Concierge", href: "#" }, { label: "Concierge", href: "#" },
@@ -179,8 +132,7 @@ export default function RoomsPage() {
] ]
}, },
{ {
title: "Connect With Us", title: "Connect With Us", items: [
items: [
{ label: "Email: reservations@elegancesuites.com", href: "mailto:reservations@elegancesuites.com" }, { label: "Email: reservations@elegancesuites.com", href: "mailto:reservations@elegancesuites.com" },
{ label: "Phone: +1 (800) ELEGANCE", href: "#" }, { label: "Phone: +1 (800) ELEGANCE", href: "#" },
{ label: "Address: 123 Luxury Ave, Premium City", href: "#" }, { label: "Address: 123 Luxury Ave, Premium City", href: "#" },