From 32531ba4cce73e2570610e740b1aef049299731d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:15:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e26768d..9e203fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Lunar Rogue Pub | Craft Beers & Dining in Fredericton, NB", description: "Discover Lunar Rogue Pub, Fredericton's premier destination for craft beverages, authentic cuisine, and vibrant atmosphere. Reserve your table today.", keywords: "pub, restaurant, craft beer, Fredericton, New Brunswick, dining, events, reservations", metadataBase: new URL("https://lunarroguepub.com"), - alternates: { - canonical: "https://lunarroguepub.com" - }, - openGraph: { - title: "Lunar Rogue Pub | Fredericton's Premier Pub", description: "Experience craft beverages and authentic cuisine at Lunar Rogue Pub in Fredericton, NB.", url: "https://lunarroguepub.com", siteName: "Lunar Rogue Pub", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg", alt: "Lunar Rogue Pub interior" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Lunar Rogue Pub | Fredericton", description: "Craft beers, great food, unforgettable evenings in Fredericton, NB.", images: ["http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Lunar Rogue Pub - Fredericton's Premier Destination", description: "Lunar Rogue Pub in Fredericton offers craft beverages, authentic cuisine, and unforgettable evenings. Reserve your table today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}