From 9cc232ad852d499619295dc9d1bde7d0c8df609c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 18:55:47 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..af47f0f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } from "next/font/google"; -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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Critter's Tavern - Bar & Grill in Goshen, Ohio | Order Online", + description: "Critter's Tavern: Local bar & grill in Goshen, Ohio. Great food, cold beer, pool tables & darts. Order online for pickup or reserve your table. 4.5★ rated.", + keywords: "bar and grill Goshen Ohio, restaurant near Goshen, food pickup Goshen, local tavern, burgers and wings, craft beer Goshen", + metadataBase: new URL("https://critterstavern.local"), + alternates: { + canonical: "https://critterstavern.local", + }, + openGraph: { + title: "Critter's Tavern - Goshen, Ohio's Favorite Bar & Grill", + description: "Experience authentic bar & grill dining. Fresh burgers, wings, cold beer, and games. Order online or reserve today.", + url: "https://critterstavern.local", + siteName: "Critter's Tavern", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/man-gesturing-while-drinking-dinks-with-his-friends-bar_23-2147861989.jpg", + alt: "Critter's Tavern Interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Critter's Tavern - Goshen's Best Bar & Grill", + description: "Order food online, reserve your table, and experience authentic hometown hospitality.", + images: ["http://img.b2bpic.net/free-photo/man-gesturing-while-drinking-dinks-with-his-friends-bar_23-2147861989.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}