From 1947ae990d9c34b469c79344ba81b6bfcbd5b298 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 06:15:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1421 -------------------------------------------- 1 file changed, 1421 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1fde2e9..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +0,0 @@ -import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Hargadon Bros | Historic Pub & Wine Merchant | Sligo Since 1868", description: "Hargadon Bros: A legendary pub, grocer & wine merchant in Sligo, Ireland since 1868. Exceptional spirits, fine wines, gourmet foods & authentic Irish hospitality.", keywords: "pub Sligo, Irish bar, wine merchant, spirits, fine dining Sligo, traditional pub Ireland, Hargadon Bros", metadataBase: new URL("https://www.hargadons.com"), - alternates: { - canonical: "https://www.hargadons.com" - }, - openGraph: { - title: "Hargadon Bros | Historic Irish Pub & Wine Merchant", description: "Est. 1868 — Experience tradition, exceptional spirits, fine wines & authentic Irish hospitality in the heart of Sligo.", url: "https://www.hargadons.com", siteName: "Hargadon Bros", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/stylish-brutal-bartender-serves-attractive-couple-who-spend-evening-date_613910-19136.jpg", alt: "Hargadon Bros historic pub interior" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Hargadon Bros | Historic Irish Pub Since 1868", description: "Legendary gathering place for spirits, wines, fine dining & authentic Irish hospitality.", images: ["http://img.b2bpic.net/free-photo/stylish-brutal-bartender-serves-attractive-couple-who-spend-evening-date_613910-19136.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -