import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); export const metadata: Metadata = { title: "Brew Haven | Specialty Coffee Shop", description: "Discover premium specialty coffee crafted with passion. Visit Brew Haven for expertly roasted beans, specialty drinks, and a welcoming café community.", keywords: "specialty coffee, coffee shop, barista, espresso, latte, pour over, coffee beans, café", metadataBase: new URL('https://brewhaven.com'), alternates: { canonical: 'https://brewhaven.com' }, robots: { index: true, follow: true }, openGraph: { title: "Brew Haven | Specialty Coffee Shop", description: "Experience premium specialty coffee crafted with passion by expert baristas.", url: "https://brewhaven.com", siteName: "Brew Haven", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/close-up-milk-poured-coffee-cup_23-2148366658.jpg", alt: "Brew Haven specialty coffee" }] }, twitter: { card: "summary_large_image", title: "Brew Haven | Specialty Coffee Shop", description: "Premium specialty coffee crafted with passion", images: ["https://img.b2bpic.net/free-photo/close-up-milk-poured-coffee-cup_23-2148366658.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}