import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Canadian Brewhouse Windsor | Sports Bar & Restaurant", description: "Windsor's ultimate sports bar featuring great food, epic drinks, and a vibrant atmosphere. Open until 2 AM with outdoor seating, trivia nights, and more. 4.4★ rated.", keywords: "sports bar Windsor, restaurant Windsor, cocktails, pub food, game night, reservations", openGraph: { title: "The Canadian Brewhouse Windsor | Sports Bar & Restaurant", description: "Experience the ultimate sports bar atmosphere with great food and drinks in Windsor, ON.", siteName: "The Canadian Brewhouse", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/side-view-cocktail-shots-with-slice-lemon-kiwi-slice-candles-bar_176474-3056.jpg", alt: "The Canadian Brewhouse Interior" } ] }, twitter: { card: "summary_large_image", title: "The Canadian Brewhouse Windsor", description: "Windsor's ultimate sports bar for great food, epic drinks, and unforgettable moments.", images: ["http://img.b2bpic.net/free-photo/bibliotheque-cocktail-lounge-bar-counter-relaxation-drink_482257-24605.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}