From d0b2ff58fa360756ee4b56d086b1be6dd2a4916e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 04:26:20 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b5b7e76..f2c91af 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", }, ]} -- 2.49.1 From 154b093474d3e8a4f94d6a20683879742d5e6986 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 04:26:21 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..005dfcb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}