Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-12 04:26:26 +00:00
4 changed files with 57 additions and 23 deletions

View File

@@ -93,21 +93,21 @@ export default function AboutPage() {
id: 1,
title: "Luxury & Elegance",
description: "Every detail of Royal Palace Hotel reflects our commitment to providing a refined and luxurious experience.",
imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683455.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683455.jpg?_wi=2",
imageAlt: "Luxury hotel interior",
},
{
id: 2,
title: "Guest-Centric Service",
description: "Our highly trained team anticipates guest needs and delivers personalized service that exceeds expectations.",
imageSrc: "http://img.b2bpic.net/free-photo/table-with-glasses-cutlery_140725-9745.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/table-with-glasses-cutlery_140725-9745.jpg?_wi=2",
imageAlt: "Premium service experience",
},
{
id: 3,
title: "Innovation & Comfort",
description: "We continuously invest in modern amenities and technology to ensure our guests enjoy maximum comfort and convenience.",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg?_wi=4",
imageAlt: "Modern hotel room",
},
]}

View File

@@ -1,24 +1,56 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 { Figtree } 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 figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Royal Palace Hotel - Luxury 5-Star Accommodations",
description: "Experience luxury at Royal Palace Hotel. Premium rooms, world-class amenities, fine dining, and exceptional service in the heart of the city.",
keywords: "luxury hotel, 5-star accommodation, premium rooms, booking, resort",
openGraph: {
title: "Royal Palace Hotel - Luxury 5-Star Accommodations",
description: "Experience unparalleled luxury and elegance at Royal Palace Hotel",
siteName: "Royal Palace Hotel",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683455.jpg",
alt: "Royal Palace Hotel Lobby",
},
],
},
twitter: {
card: "summary_large_image",
title: "Royal Palace Hotel - Luxury Accommodations",
description: "Book your luxury stay at Royal Palace Hotel today",
images: ["http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683455.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -95,7 +95,7 @@ export default function HomePage() {
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683455.jpg"
imageSrc="http://img.b2bpic.net/free-photo/view-luxurious-hotel-interior-space_23-2150683455.jpg?_wi=1"
imageAlt="Luxury hotel lobby with crystal chandeliers"
mediaAnimation="opacity"
frameStyle="card"
@@ -110,7 +110,7 @@ export default function HomePage() {
name: "Deluxe Suite",
price: "$299/night",
variant: "King Bed • City View",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg?_wi=1",
imageAlt: "Deluxe suite with king bed and city view",
isFavorited: false,
},
@@ -119,7 +119,7 @@ export default function HomePage() {
name: "Presidential Suite",
price: "$599/night",
variant: "Multiple Beds • Penthouse",
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bedroom-int_1203-2347.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bedroom-int_1203-2347.jpg?_wi=1",
imageAlt: "Presidential suite with luxury amenities",
isFavorited: false,
},
@@ -128,7 +128,7 @@ export default function HomePage() {
name: "Standard Room",
price: "$149/night",
variant: "Queen Bed • Garden View",
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=1",
imageAlt: "Standard room with queen bed",
isFavorited: false,
},
@@ -163,7 +163,7 @@ export default function HomePage() {
id: 1,
title: "Fine Dining Restaurant",
description: "Savor exquisite cuisine prepared by our award-winning chefs using the finest ingredients.",
imageSrc: "http://img.b2bpic.net/free-photo/table-with-glasses-cutlery_140725-9745.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/table-with-glasses-cutlery_140725-9745.jpg?_wi=1",
imageAlt: "Fine dining restaurant interior",
},
{
@@ -177,7 +177,7 @@ export default function HomePage() {
id: 3,
title: "Olympic Pool",
description: "Experience our stunning indoor and outdoor pools with heated water and sun lounges.",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-chair-around-beautiful-luxury-swimming-pool_74190-2034.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-chair-around-beautiful-luxury-swimming-pool_74190-2034.jpg?_wi=1",
imageAlt: "Luxury hotel pool area",
},
{

View File

@@ -42,7 +42,7 @@ export default function RoomsPage() {
name: "Deluxe Suite",
price: "$299/night",
variant: "King Bed • City View",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg?_wi=2",
imageAlt: "Deluxe suite with king bed and city view",
isFavorited: false,
},
@@ -51,7 +51,7 @@ export default function RoomsPage() {
name: "Presidential Suite",
price: "$599/night",
variant: "Multiple Beds • Penthouse",
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bedroom-int_1203-2347.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bangkok-thailand-august-12-2016-beautiful-luxury-bedroom-int_1203-2347.jpg?_wi=2",
imageAlt: "Presidential suite with luxury amenities",
isFavorited: false,
},
@@ -60,7 +60,7 @@ export default function RoomsPage() {
name: "Standard Room",
price: "$149/night",
variant: "Queen Bed • Garden View",
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=2",
imageAlt: "Standard room with queen bed",
isFavorited: false,
},
@@ -69,7 +69,7 @@ export default function RoomsPage() {
name: "Junior Suite",
price: "$249/night",
variant: "Double Bed • Partial View",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/hotel-room-with-lit-lamp_1203-547.jpg?_wi=3",
imageAlt: "Junior suite with double bed",
isFavorited: false,
},
@@ -92,7 +92,7 @@ export default function RoomsPage() {
name: "Ocean View Rooms",
price: "$349/night",
variant: "Panoramic Views • Balcony",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-chair-around-beautiful-luxury-swimming-pool_74190-2034.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/umbrella-chair-around-beautiful-luxury-swimming-pool_74190-2034.jpg?_wi=2",
imageAlt: "Ocean view room with balcony",
isFavorited: false,
},
@@ -110,7 +110,7 @@ export default function RoomsPage() {
name: "Accessible Suites",
price: "$279/night",
variant: "Wheelchair Accessible • Full Service",
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/bedroom_74190-3857.jpg?_wi=3",
imageAlt: "Accessible suite",
isFavorited: false,
},