import type { Metadata } from "next"; import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "BrewHaven - Premium Specialty Coffee & Artisanal Café", description: "Discover expertly roasted specialty coffee and artisanal pastries at BrewHaven. Award-winning baristas, community atmosphere, and exceptional quality in every cup.", keywords: "specialty coffee, café, espresso, artisanal, barista, premium coffee", metadataBase: new URL("https://brewhaven.coffee"), alternates: { canonical: "https://brewhaven.coffee" }, openGraph: { title: "BrewHaven - Premium Coffee Experience", description: "Discover our award-winning specialty coffee and welcoming café community", url: "https://brewhaven.coffee", siteName: "BrewHaven", images: [ { url: "https://img.b2bpic.net/free-photo/close-up-hands-preparing-drink-with-milk_23-2148865605.jpg", alt: "BrewHaven specialty coffee" } ], type: "website" }, twitter: { card: "summary_large_image", title: "BrewHaven - Premium Coffee & Café", description: "Award-winning specialty coffee in a welcoming community space", images: ["https://img.b2bpic.net/free-photo/close-up-hands-preparing-drink-with-milk_23-2148865605.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}