From ceb0d0eaa93e02cdb208946d0ea7722e53be27d6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:02:18 +0000 Subject: [PATCH 1/5] Update src/app/experience/page.tsx --- src/app/experience/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/experience/page.tsx b/src/app/experience/page.tsx index 2ffe837..35acff1 100644 --- a/src/app/experience/page.tsx +++ b/src/app/experience/page.tsx @@ -56,7 +56,7 @@ export default function ExperiencePage() { imageAlt: "porte de france medina entrance historic gate tunis" }, { - imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-man-taking-pictures_1163-3392.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-man-taking-pictures_1163-3392.jpg?_wi=4", imageAlt: "luxury hotel balcony overlooking historic square medina" } ]} -- 2.49.1 From 7ca21e5fef19eb5a0316ec12372c592dbc9bb9d6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:02:18 +0000 Subject: [PATCH 2/5] Update src/app/history/page.tsx --- src/app/history/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/history/page.tsx b/src/app/history/page.tsx index 719a0a1..127e321 100644 --- a/src/app/history/page.tsx +++ b/src/app/history/page.tsx @@ -56,7 +56,7 @@ export default function HistoryPage() { imageAlt: "Historic british embassy building colonial architecture tunisia" }, { - imageSrc: "http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892970.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892970.jpg?_wi=2", imageAlt: "luxury boutique hotel interior elegant lobby cream stone" } ]} -- 2.49.1 From e2933b565b64578a798dd977ce9c2fc97624bfee Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:02:19 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..7353f09 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Royal Victoria Hotel - Luxury Boutique Hotel at the Gate of the Medina", + description: "Experience historic luxury at Royal Victoria Hotel, a former British Embassy converted into a boutique hotel. Prime Medina location, exceptional breakfast, and authentic Tunisian hospitality.", + keywords: "luxury hotel Tunis, boutique hotel Medina, historic hotel Tunisia, hotel near Medina, Porte de France hotel, Victory Square hotel", + metadataBase: new URL("https://royalvictoriahotel.tn"), + alternates: { + canonical: "https://royalvictoriahotel.tn", + }, + openGraph: { + title: "Royal Victoria Hotel - Where History Meets Hospitality", + description: "Stay at one of Tunis' most remarkable historic buildings. Former British Embassy turned luxury boutique hotel at the gateway of the Medina.", + url: "https://royalvictoriahotel.tn", + siteName: "Royal Victoria Hotel", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/smiling-young-man-taking-pictures_1163-3392.jpg", + alt: "Royal Victoria Hotel balcony overlooking Victory Square", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Royal Victoria Hotel - Luxury Boutique Experience in Tunis", + description: "Historic luxury at the gateway of the Medina. Experience authentic Tunisian hospitality in a former British Embassy.", + images: ["http://img.b2bpic.net/free-photo/smiling-young-man-taking-pictures_1163-3392.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}