import type { Metadata } from "next"; import { Nunito_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brew Haven | Premium Coffee Shop & Cafe", description: "Discover handcrafted specialty coffee at Brew Haven. Experience cozy ambiance, expert baristas, and premium beans from around the world. Visit our coffee shop today.", keywords: "specialty coffee, cafe, espresso, latte, coffee shop, barista, premium beans", openGraph: { title: "Brew Haven | Premium Coffee Shop & Cafe", description: "Experience exceptional coffee crafted with passion. Premium beans, expert baristas, and cozy ambiance.", siteName: "Brew Haven", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/barista-working-steam-espresso-coffee-machine-coffee-shop_613910-20704.jpg", alt: "Brew Haven Coffee Shop" } ] }, twitter: { card: "summary_large_image", title: "Brew Haven | Premium Coffee Shop & Cafe", description: "Experience exceptional coffee crafted with passion.", images: ["https://img.b2bpic.net/free-photo/barista-working-steam-espresso-coffee-machine-coffee-shop_613910-20704.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}