import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Pony Grill and Bar | Casual American Dining in Sheridan", description: "Enjoy classic burgers, steaks, and craft beer at The Pony Grill and Bar in downtown Sheridan. Open Mon–Sat with happy hour specials and local hospitality.", keywords: "grill, bar, restaurant, Sheridan, burger, steak, craft beer, casual dining, happy hour", robots: { index: true, follow: true, }, openGraph: { title: "The Pony Grill and Bar", description: "Casual American grill and bar in downtown Sheridan, Wyoming. Great food, cold drinks, and local hospitality.", type: "website", siteName: "The Pony Grill and Bar", images: [ { url: "http://img.b2bpic.net/free-photo/grilling-process-preparing-meat-cutlets-burgers-cheeseburger-cutlet_1321-4392.jpg", alt: "The Pony Grill and Bar food and atmosphere"}, ], }, twitter: { card: "summary_large_image", title: "The Pony Grill and Bar", description: "Classic American grill, craft beer, and local Sheridan hospitality.", images: ["http://img.b2bpic.net/free-photo/grilling-process-preparing-meat-cutlets-burgers-cheeseburger-cutlet_1321-4392.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}