import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Huntsman Tavern | Premium Steakhouse Dining in Ellensburg", description: "Experience Ellensburg's finest steakhouse. Prime rib, handcrafted whiskey, and Pacific Northwest lodge elegance. Reserve your table today.", keywords: "steakhouse, fine dining, Ellensburg, prime rib, whiskey bar, restaurant reservations", openGraph: { title: "The Huntsman Tavern | Luxury Dining Experience", description: "Discover prime rib, handcrafted whiskey, and exceptional hospitality in an upscale lodge atmosphere.", type: "website", siteName: "The Huntsman Tavern", images: [ { url: "http://img.b2bpic.net/free-photo/ribeye-steak-teriyaki-sauce-with-glass-burgundy_114579-2160.jpg", alt: "The Huntsman Tavern luxury steakhouse" }, ], }, twitter: { card: "summary_large_image", title: "The Huntsman Tavern | Premium Steakhouse", description: "Experience luxury dining with prime rib, handcrafted whiskey, and exceptional service.", images: ["http://img.b2bpic.net/free-photo/ribeye-steak-teriyaki-sauce-with-glass-burgundy_114579-2160.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}