diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0740bf3..cac830c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Figtree } from "next/font/google"; export const metadata: Metadata = { - title: 'RSDdison Hotel | Luxury Forest Retreat', - description: 'Experience luxury like never before at RSDdison Hotel. Your eternal forest escape.', + title: 'Rooms | RSDdison Hotel', + description: 'Explore our exquisite suites and room rates at RSDdison Hotel.', openGraph: { "title": "RSDdison Hotel", "siteName": "RSDdison Hotel", diff --git a/src/app/rooms/page.tsx b/src/app/rooms/page.tsx index 3e1c49c..e5b215d 100644 --- a/src/app/rooms/page.tsx +++ b/src/app/rooms/page.tsx @@ -7,7 +7,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -export default function LandingPage() { +export default function RoomsPage() { return ( @@ -61,54 +43,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Presidential Forest Suite", - price: "$899/night", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/stone-natural-room-interior-design_23-2151890396.jpg", - brand: "RSDdison", - }, - { - id: "p2", - name: "Executive Garden Room", - price: "$599/night", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/hotel-guest-sitting-lounge-area-waiting-room-check-before-meeting-with-international-company-shareholders-professional-businessman-travelling-work-hotel-accommodation_482257-72885.jpg", - brand: "RSDdison", - }, - { - id: "p3", - name: "Premium Canopy Suite", - price: "$699/night", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497275.jpg", - brand: "RSDdison", - }, - { - id: "p4", - name: "Deluxe Serenity Room", - price: "$450/night", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/decorated-interior-christmas-beautiful-christmas-tree-near-modern-expensive-couch-big-clock-with-roman-numbers_132075-11378.jpg", - brand: "RSDdison", - }, - { - id: "p5", - name: "Junior Harmony Suite", - price: "$399/night", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-open-balcony-soft-light-through-curtains-cozy-bedroom_169016-70022.jpg", - brand: "RSDdison", - }, - { - id: "p6", - name: "Classic Forest View", - price: "$299/night", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/modern-luxury-bedroom-suite-bathroom_105762-1791.jpg", - brand: "RSDdison", - }, + { id: "p1", name: "Presidential Forest Suite", price: "$899/night", rating: 5, reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/stone-natural-room-interior-design_23-2151890396.jpg", brand: "RSDdison" }, + { id: "p2", name: "Executive Garden Room", price: "$599/night", rating: 5, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/hotel-guest-sitting-lounge-area-waiting-room-check-before-meeting-with-international-company-shareholders-professional-businessman-travelling-work-hotel-accommodation_482257-72885.jpg", brand: "RSDdison" }, + { id: "p3", name: "Premium Canopy Suite", price: "$699/night", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/indoor-design-luxury-resort_23-2150497275.jpg", brand: "RSDdison" }, + { id: "p4", name: "Deluxe Serenity Room", price: "$450/night", rating: 5, reviewCount: "82", imageSrc: "http://img.b2bpic.net/free-photo/decorated-interior-christmas-beautiful-christmas-tree-near-modern-expensive-couch-big-clock-with-roman-numbers_132075-11378.jpg", brand: "RSDdison" }, + { id: "p5", name: "Junior Harmony Suite", price: "$399/night", rating: 5, reviewCount: "64", imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-open-balcony-soft-light-through-curtains-cozy-bedroom_169016-70022.jpg", brand: "RSDdison" }, + { id: "p6", name: "Classic Forest View", price: "$299/night", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/modern-luxury-bedroom-suite-bathroom_105762-1791.jpg", brand: "RSDdison" }, ]} title="Exquisite Suites" description="Choose your perfect sanctuary." @@ -123,39 +63,8 @@ export default function LandingPage() { title="Room Rates" description="View our flexible pricing options." plans={[ - { - id: "pr1", - badge: "Classic", - price: "$250", - subtitle: "Standard rate", - buttons: [ - { - text: "View", - href: "#", - }, - ], - features: [ - "WiFi", - "Breakfast", - ], - }, - { - id: "pr2", - badge: "Premium", - price: "$450", - subtitle: "Deluxe rate", - buttons: [ - { - text: "View", - href: "#", - }, - ], - features: [ - "WiFi", - "Breakfast", - "Spa access", - ], - }, + { id: "pr1", badge: "Classic", price: "$250", subtitle: "Standard rate", buttons: [{ text: "View", href: "#" }], features: ["WiFi", "Breakfast"] }, + { id: "pr2", badge: "Premium", price: "$450", subtitle: "Deluxe rate", buttons: [{ text: "View", href: "#" }], features: ["WiFi", "Breakfast", "Spa access"] }, ]} /> @@ -164,57 +73,13 @@ export default function LandingPage() { ); -} +} \ No newline at end of file