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: "Coffee Haven - Specialty Coffee & Cafe | Premium Brews", description: "Discover craft coffee at Coffee Haven. Ethically sourced beans, expert baristas, and a welcoming atmosphere. Visit our cafe today.", keywords: "specialty coffee, cafe, espresso, cappuccino, barista, ethical coffee, artisan roast", metadataBase: new URL("https://coffeehaven.com"), alternates: { canonical: "https://coffeehaven.com" }, openGraph: { title: "Coffee Haven - Your Perfect Cup Awaits", description: "Experience premium specialty coffee in our cozy cafe. Ethically sourced, hand-roasted daily.", url: "https://coffeehaven.com", siteName: "Coffee Haven", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/glass-with-delicious-coffee_23-2149703760.jpg", alt: "Coffee Haven signature specialty coffee" } ] }, twitter: { card: "summary_large_image", title: "Coffee Haven - Specialty Coffee", description: "Craft your perfect cup at Coffee Haven", images: ["https://img.b2bpic.net/free-photo/glass-with-delicious-coffee_23-2149703760.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}