import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brew Haven | Specialty Coffee & Local Cafe", description: "Discover exceptional specialty coffee, fresh-roasted daily, and a welcoming community space. Visit Brew Haven for ethically sourced espresso and meaningful connections.", keywords: "specialty coffee, local cafe, barista, coffee shop, fresh roasted, espresso, community gathering", metadataBase: new URL("https://brewhaven.com"), alternates: { canonical: "https://brewhaven.com" }, openGraph: { title: "Brew Haven | Specialty Coffee Cafe", description: "Exceptional coffee, warm hospitality, and a space that feels like home. Visit Brew Haven today.", type: "website", siteName: "Brew Haven" }, twitter: { card: "summary_large_image", title: "Brew Haven | Specialty Coffee Cafe", description: "Exceptional coffee, warm hospitality, and a space that feels like home." } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}