Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-14 07:53:24 +00:00
6 changed files with 86 additions and 48 deletions

View File

@@ -81,7 +81,7 @@ export default function AboutPage() {
tag="Paramount Hospitality"
tagIcon={Building2}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/female-colleagues-with-tablet-computer-outdoor_1262-21040.jpg"
imageSrc="http://img.b2bpic.net/free-photo/female-colleagues-with-tablet-computer-outdoor_1262-21040.jpg?_wi=2"
imageAlt="Central Residence"
useInvertedBackground={false}
/>
@@ -98,7 +98,7 @@ export default function AboutPage() {
author: "At Our Heart",
description: "We believe in treating every guest like family, understanding their needs, and going beyond expectations to create memorable moments.",
tags: ["Warmth", "Care", "Welcome"],
imageSrc: "http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg?_wi=2",
imageAlt: "Hospitality",
},
{
@@ -107,7 +107,7 @@ export default function AboutPage() {
author: "Your Priority",
description: "From premium bedding to thoughtfully designed spaces, every element is chosen to ensure your complete comfort and relaxation.",
tags: ["Premium", "Comfort", "Quality"],
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg?_wi=2",
imageAlt: "Comfort",
},
{
@@ -116,7 +116,7 @@ export default function AboutPage() {
author: "Non-Negotiable",
description: "Rigorous cleaning protocols and meticulous attention ensure your environment is always fresh, clean, and hygienic.",
tags: ["Clean", "Safe", "Hygienic"],
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg?_wi=2",
imageAlt: "Cleanliness",
},
{
@@ -125,7 +125,7 @@ export default function AboutPage() {
author: "Every Interaction",
description: "Our team is trained to deliver consistent, courteous, and professional service that sets the standard for hospitality.",
tags: ["Professional", "Trained", "Expert"],
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-pool-chair_74190-1611.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-pool-chair_74190-1611.jpg?_wi=2",
imageAlt: "Professionalism",
},
]}

View File

@@ -81,7 +81,7 @@ export default function ContactPage() {
description="Ready to experience luxury hospitality? Contact us today to book your perfect getaway or inquire about our rooms and services."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg"
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg?_wi=5"
imageAlt="Book Now"
mediaAnimation="blur-reveal"
mediaPosition="right"

View File

@@ -1,24 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Central Residence - Luxury Hospitality in Karachi",
description: "Discover luxury and comfort at Central Residence by Paramount Hospitality. Premium rooms, 4.9-star rated service, and exceptional hospitality in Karachi's heart.",
keywords: "luxury hotel Karachi, boutique hotel Pakistan, premium accommodation, Central Residence, Paramount Hospitality",
metadataBase: new URL("https://centralresidence.pk"),
alternates: {
canonical: "https://centralresidence.pk",
},
openGraph: {
title: "Central Residence - Luxury Hotel in Karachi",
description: "Experience premium hospitality with 4.9-star service, luxury rooms, and warm welcome at Central Residence.",
siteName: "Central Residence",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg",
alt: "Central Residence Luxury Hotel",
},
],
},
twitter: {
card: "summary_large_image",
title: "Central Residence - Luxury Hotel Karachi",
description: "Premium hospitality with 4.9-star guest satisfaction. Book your luxury stay today.",
images: ["http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -89,7 +89,7 @@ export default function HomePage() {
handle: "@ahmed_hassan",
testimonial: "Absolutely stunning property! The attention to detail and exceptional service made my stay unforgettable. Highly recommended for anyone seeking luxury in Karachi.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-elderly-woman-with-backpack-sporty-woman-casual-clothes-smiling-pointing-sport-adventure-hobby-concept_74855-23325.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-elderly-woman-with-backpack-sporty-woman-casual-clothes-smiling-pointing-sport-adventure-hobby-concept_74855-23325.jpg?_wi=1",
imageAlt: "Ahmed Hassan guest",
},
{
@@ -97,7 +97,7 @@ export default function HomePage() {
handle: "@fatima_travels",
testimonial: "The rooms are beautifully appointed, staff is incredibly welcoming, and the location is perfect. Best hospitality experience I've had in years!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-commuter-standing-counter-while-attendant-checking-his-passport_107420-95792.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-commuter-standing-counter-while-attendant-checking-his-passport_107420-95792.jpg?_wi=1",
imageAlt: "Fatima Khan guest",
},
{
@@ -105,7 +105,7 @@ export default function HomePage() {
handle: "@ali_business",
testimonial: "Perfect for business travel. Clean, comfortable rooms, excellent WiFi, and the most accommodating team. Will definitely stay again!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg?_wi=1",
imageAlt: "Muhammad Ali guest",
},
]}
@@ -119,7 +119,7 @@ export default function HomePage() {
{ text: "Explore Rooms", href: "/rooms" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg"
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg?_wi=1"
imageAlt="Central Residence Luxury Lobby"
mediaAnimation="blur-reveal"
/>
@@ -134,7 +134,7 @@ export default function HomePage() {
tagAnimation="slide-up"
buttons={[{ text: "Learn More About Us", href: "/about" }]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/female-colleagues-with-tablet-computer-outdoor_1262-21040.jpg"
imageSrc="http://img.b2bpic.net/free-photo/female-colleagues-with-tablet-computer-outdoor_1262-21040.jpg?_wi=1"
imageAlt="Central Residence Exterior"
useInvertedBackground={false}
/>
@@ -151,7 +151,7 @@ export default function HomePage() {
author: "Guest Experience",
description: "Meticulously designed rooms with premium bedding, spacious layouts, and modern amenities ensure a restful, rejuvenating stay.",
tags: ["Luxury", "Comfort", "Premium"],
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg?_wi=1",
imageAlt: "Luxury Bedroom",
},
{
@@ -160,7 +160,7 @@ export default function HomePage() {
author: "Service Excellence",
description: "Our dedicated team goes above and beyond to anticipate your needs and deliver personalized, warm service that makes you feel valued.",
tags: ["Service", "Professional", "Welcoming"],
imageSrc: "http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg?_wi=1",
imageAlt: "Fine Dining",
},
{
@@ -178,7 +178,7 @@ export default function HomePage() {
author: "Hygiene Standards",
description: "Highest standards of cleanliness and sanitation throughout the property, because we understand your health and comfort matter most.",
tags: ["Clean", "Hygienic", "Safe"],
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg?_wi=1",
imageAlt: "Modern Bathroom",
},
{
@@ -187,7 +187,7 @@ export default function HomePage() {
author: "Contemporary Comfort",
description: "High-speed WiFi, air conditioning, premium toiletries, and thoughtfully curated facilities for your convenience and relaxation.",
tags: ["WiFi", "Modern", "Equipped"],
imageSrc: "http://img.b2bpic.net/free-photo/people-international-conference-hotel-having-opportunities-build-relations-corporations-businessmen-forging-connections-development-future-collaborations_482257-68041.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-international-conference-hotel-having-opportunities-build-relations-corporations-businessmen-forging-connections-development-future-collaborations_482257-68041.jpg?_wi=1",
imageAlt: "Guest Suite Lounge",
},
{
@@ -196,7 +196,7 @@ export default function HomePage() {
author: "Serene Environment",
description: "A tranquil sanctuary away from the hustle and bustle, offering the perfect environment for rest, reflection, and rejuvenation.",
tags: ["Peaceful", "Quiet", "Serene"],
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-pool-chair_74190-1611.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-pool-chair_74190-1611.jpg?_wi=1",
imageAlt: "Garden Retreat",
},
]}
@@ -220,7 +220,7 @@ export default function HomePage() {
handle: "@sarah_explorer",
testimonial: "Absolutely stunning property! The attention to detail and exceptional service made my stay unforgettable. The rooms are beautifully appointed, and the staff went above and beyond. Highly recommended!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-elderly-woman-with-backpack-sporty-woman-casual-clothes-smiling-pointing-sport-adventure-hobby-concept_74855-23325.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-elderly-woman-with-backpack-sporty-woman-casual-clothes-smiling-pointing-sport-adventure-hobby-concept_74855-23325.jpg?_wi=2",
imageAlt: "Sarah Williams",
},
{
@@ -229,7 +229,7 @@ export default function HomePage() {
handle: "@hassan_business",
testimonial: "Perfect for business travel. Clean, comfortable rooms, excellent WiFi connectivity, and incredibly professional staff. The hospitality here is unmatched. Will definitely return!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-commuter-standing-counter-while-attendant-checking-his-passport_107420-95792.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-commuter-standing-counter-while-attendant-checking-his-passport_107420-95792.jpg?_wi=2",
imageAlt: "Hassan Malik",
},
{
@@ -238,7 +238,7 @@ export default function HomePage() {
handle: "@amira_travels",
testimonial: "My family's stay was absolutely perfect. The location is excellent, the rooms are spacious and elegant, and the team treated us like family. Thank you for making our trip memorable!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg?_wi=2",
imageAlt: "Amira Hassan",
},
{
@@ -247,7 +247,7 @@ export default function HomePage() {
handle: "@michael_luxury",
testimonial: "Exceptional luxury at an affordable price. The amenities are top-notch, the cleanliness is impeccable, and the service is genuinely warm. This is my new favorite hotel in Karachi!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-passport_23-2149963921.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-passport_23-2149963921.jpg?_wi=1",
imageAlt: "Michael Chen",
},
{
@@ -256,7 +256,7 @@ export default function HomePage() {
handle: "@zahra_life",
testimonial: "A hidden gem! The property is beautifully maintained, the staff is incredibly helpful, and you can feel the care they put into every detail. Highly recommended for anyone visiting Karachi!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-working-together_23-2149871330.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-working-together_23-2149871330.jpg?_wi=1",
imageAlt: "Zahra Khan",
},
{
@@ -265,7 +265,7 @@ export default function HomePage() {
handle: "@david_corporate",
testimonial: "Outstanding hospitality experience. The check-in process was seamless, the room exceeded expectations, and the staff's attention to detail is remarkable. Definitely booking again!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=1",
imageAlt: "David Thompson",
},
]}
@@ -325,7 +325,7 @@ export default function HomePage() {
description="Ready to experience luxury hospitality? Contact us today to book your perfect getaway or inquire about our rooms and services."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg"
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg?_wi=2"
imageAlt="Book Now"
mediaAnimation="blur-reveal"
mediaPosition="right"

View File

@@ -86,7 +86,7 @@ const ReviewsPage = () => {
handle: "@ahmad_karachi",
testimonial: "Excellent property with outstanding service. The rooms are beautifully maintained, the staff is incredibly helpful, and the location is perfect. Highly recommended!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-elderly-woman-with-backpack-sporty-woman-casual-clothes-smiling-pointing-sport-adventure-hobby-concept_74855-23325.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-cheerful-elderly-woman-with-backpack-sporty-woman-casual-clothes-smiling-pointing-sport-adventure-hobby-concept_74855-23325.jpg?_wi=3",
imageAlt: "Ahmad",
},
{
@@ -95,7 +95,7 @@ const ReviewsPage = () => {
handle: "@sophia_travels",
testimonial: "My best hotel experience in Pakistan! Clean, comfortable, and the team truly cares about guest satisfaction. The attention to detail is remarkable. Will definitely return!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-commuter-standing-counter-while-attendant-checking-his-passport_107420-95792.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-commuter-standing-counter-while-attendant-checking-his-passport_107420-95792.jpg?_wi=3",
imageAlt: "Sophia",
},
{
@@ -104,7 +104,7 @@ const ReviewsPage = () => {
handle: "@khalid_business",
testimonial: "Perfect for business travelers. Fast WiFi, comfortable workspace, excellent room service, and professional staff. Everything you need for a productive stay!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-working-luxury-restaurant_23-2150598417.jpg?_wi=3",
imageAlt: "Khalid",
},
{
@@ -113,7 +113,7 @@ const ReviewsPage = () => {
handle: "@noor_family",
testimonial: "Family stay was fantastic! Kids loved the peaceful environment, parents appreciated the comfort and cleanliness. Thank you for making our vacation memorable!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-passport_23-2149963921.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-smiley-woman-holding-passport_23-2149963921.jpg?_wi=2",
imageAlt: "Noor",
},
{
@@ -122,7 +122,7 @@ const ReviewsPage = () => {
handle: "@hassan_luxury",
testimonial: "Luxury doesn't have to be expensive. Central Residence proves it! Premium quality, exceptional service, and reasonable prices. My new favorite hotel!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-working-together_23-2149871330.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-women-working-together_23-2149871330.jpg?_wi=2",
imageAlt: "Hassan",
},
{
@@ -131,7 +131,7 @@ const ReviewsPage = () => {
handle: "@lisa_international",
testimonial: "Visited from abroad and was absolutely impressed. The hospitality, cleanliness, and professionalism exceeded my expectations. Booking my next trip already!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=2",
imageAlt: "Lisa",
},
]}
@@ -197,7 +197,7 @@ const ReviewsPage = () => {
description="Contact us today to reserve your perfect getaway at Central Residence. Our team is here to answer any questions and help make your stay unforgettable."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg"
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg?_wi=4"
imageAlt="Book Your Stay"
mediaAnimation="blur-reveal"
mediaPosition="right"

View File

@@ -85,7 +85,7 @@ const RoomsPage = () => {
name: "Deluxe Room",
price: "From PKR 8,500",
variant: "Spacious & Elegant",
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg?_wi=3",
imageAlt: "Deluxe Room",
},
{
@@ -93,7 +93,7 @@ const RoomsPage = () => {
name: "Premium Suite",
price: "From PKR 12,000",
variant: "Luxury Living",
imageSrc: "http://img.b2bpic.net/free-photo/people-international-conference-hotel-having-opportunities-build-relations-corporations-businessmen-forging-connections-development-future-collaborations_482257-68041.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-international-conference-hotel-having-opportunities-build-relations-corporations-businessmen-forging-connections-development-future-collaborations_482257-68041.jpg?_wi=2",
imageAlt: "Premium Suite",
},
{
@@ -101,7 +101,7 @@ const RoomsPage = () => {
name: "Executive Room",
price: "From PKR 10,000",
variant: "Business Ready",
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg?_wi=3",
imageAlt: "Executive Room",
},
]}
@@ -132,7 +132,7 @@ const RoomsPage = () => {
author: "Connectivity",
description: "Fast, reliable internet connectivity throughout the property to keep you connected with work and loved ones.",
tags: ["Internet", "Connected", "Work-Ready"],
imageSrc: "http://img.b2bpic.net/free-photo/people-international-conference-hotel-having-opportunities-build-relations-corporations-businessmen-forging-connections-development-future-collaborations_482257-68041.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-international-conference-hotel-having-opportunities-build-relations-corporations-businessmen-forging-connections-development-future-collaborations_482257-68041.jpg?_wi=3",
imageAlt: "WiFi",
},
{
@@ -141,7 +141,7 @@ const RoomsPage = () => {
author: "Comfort",
description: "Advanced air conditioning systems ensure your room is always at the perfect temperature, regardless of the season.",
tags: ["Temperature", "Modern", "Efficient"],
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg?_wi=4",
imageAlt: "AC",
},
{
@@ -150,7 +150,7 @@ const RoomsPage = () => {
author: "Luxury",
description: "Modern fixtures, hot water 24/7, and high-quality toiletries create a spa-like experience in every bathroom.",
tags: ["Modern", "Clean", "Luxurious"],
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/interior-design-with-vintage-bathtub_23-2148291599.jpg?_wi=4",
imageAlt: "Bathroom",
},
{
@@ -159,7 +159,7 @@ const RoomsPage = () => {
author: "Rest",
description: "Premium mattresses and linens ensure deep, restful sleep so you wake refreshed and rejuvenated.",
tags: ["Comfortable", "Quality", "Restful"],
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bellhop-offering-services-woman-lounge-area-waiting-room-check-seaside-hotel-tourist-sitting-couch-talking-hotel-concierge-summer-clothes-handheld-shot_482257-67916.jpg?_wi=5",
imageAlt: "Bedding",
},
{
@@ -168,7 +168,7 @@ const RoomsPage = () => {
author: "Protection",
description: "Professional security measures and modern safety systems ensure your peace of mind throughout your stay.",
tags: ["Safe", "Secure", "Protected"],
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-pool-chair_74190-1611.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-pool-chair_74190-1611.jpg?_wi=3",
imageAlt: "Security",
},
{
@@ -177,7 +177,7 @@ const RoomsPage = () => {
author: "Support",
description: "Our dedicated team is available round the clock to assist with any requests or concerns during your stay.",
tags: ["Support", "Professional", "Available"],
imageSrc: "http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lovely-indian-couple-love-wear-saree-elegant-suit-sitting-restaurant-eating-ice-cream-together_627829-843.jpg?_wi=3",
imageAlt: "Service",
},
]}
@@ -197,7 +197,7 @@ const RoomsPage = () => {
description="Ready to experience luxury hospitality? Contact us today to book your perfect getaway or inquire about our rooms and services."
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg"
imageSrc="http://img.b2bpic.net/free-vector/modern-hotel-reception-with-flat-design_23-2147980724.jpg?_wi=3"
imageAlt="Book Now"
mediaAnimation="blur-reveal"
mediaPosition="right"