import type { Metadata } from "next"; import { Work_Sans } from "next/font/google"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brew Haven - Specialty Coffee Shop & Cafe", description: "Discover premium specialty coffee roasted fresh daily. Expert baristas, cozy ambiance, and community gathering space. Visit Brew Haven for the perfect cup.", keywords: "specialty coffee, cafe, barista, espresso, cold brew, coffee shop", metadataBase: new URL("https://brewhaven.com"), alternates: { canonical: "https://brewhaven.com" }, robots: { index: true, follow: true }, openGraph: { title: "Brew Haven - Specialty Coffee Shop", description: "Premium specialty coffee in a warm, welcoming community space", siteName: "Brew Haven", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/dark-coffee-cup-wooden-table_1232-1152.jpg", alt: "Brew Haven specialty coffee" }] }, twitter: { card: "summary_large_image", title: "Brew Haven - Specialty Coffee", description: "Experience premium coffee and community at Brew Haven", images: ["https://img.b2bpic.net/free-photo/dark-coffee-cup-wooden-table_1232-1152.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}