From 734ca46eba7a0bcfd31713c36c1fc60bb90c527f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:03:14 +0000 Subject: [PATCH] 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}