From 7a953b24360f6252ea7bbfb784507e8e65ce001d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:03:14 +0000 Subject: [PATCH 1/5] Update src/app/dining/page.tsx --- src/app/dining/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/dining/page.tsx b/src/app/dining/page.tsx index ab6b912..e444b8e 100644 --- a/src/app/dining/page.tsx +++ b/src/app/dining/page.tsx @@ -103,7 +103,7 @@ export default function DiningPage() { icon: Users, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg" + imageSrc="http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=3" imageAlt="Skylon Bar & Grill at Dublin Skylon Hotel" imagePosition="right" textboxLayout="default" @@ -120,11 +120,11 @@ export default function DiningPage() { title: "Fine Dining Experience", description: "Our award-winning chefs prepare exquisite dishes in an elegant setting. From traditional Irish fare to international cuisine, each meal is crafted to perfection.", phoneOne={{ - imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg?_wi=2", imageAlt: "Fine dining at Skylon Restaurant", }, phoneTwo={{ - imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=4", imageAlt: "Premium bar service", }}, }, @@ -133,11 +133,11 @@ export default function DiningPage() { title: "Craft Cocktails & Wine Selection", description: "Our expert mixologists create signature cocktails while our sommeliers curate an extensive wine collection to complement your meal perfectly.", phoneOne={{ - imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crystal-wineglasses-stand-illuminated-wardrobe_8353-658.jpg?_wi=5", imageAlt: "Craft cocktails", }}, phoneTwo{{ - imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/reserved-table-restaurant_53876-30324.jpg?_wi=3", imageAlt: "Wine selection", }}, }, -- 2.49.1 From 734ca46eba7a0bcfd31713c36c1fc60bb90c527f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:03:14 +0000 Subject: [PATCH 2/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 42fa6ab..cceb9ea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Dublin Skylon Hotel | 4-Star Hotel Drumcondra, Dublin", + description: "Book your stay at Dublin Skylon Hotel, a 4-star hotel in Drumcondra, Dublin. Close to Dublin Airport and city centre. Free WiFi, restaurant & bar, parking. Excellent guest reviews.", + keywords: "Dublin hotel, 4-star hotel, Drumcondra hotel, Dublin accommodation, business hotel Dublin, family hotel Dublin", + metadataBase: new URL("https://dublinskylon.ie"), + alternates: { + canonical: "https://dublinskylon.ie", + }, + openGraph: { + title: "Dublin Skylon Hotel | Luxury 4-Star Accommodation in Dublin", + description: "Experience warm Irish hospitality at our 4-star hotel in Drumcondra, Dublin. Just 3km from the city centre with modern rooms, fine dining, and exceptional service.", + url: "https://dublinskylon.ie", + siteName: "Dublin Skylon Hotel", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg", + alt: "Dublin Skylon Hotel luxury room", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Dublin Skylon Hotel | 4-Star Hotel in Dublin", + description: "Book your stay at Dublin Skylon Hotel. Premium accommodation near Dublin Airport and city centre.", + images: ["http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6170.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}