import type { Metadata } from "next"; import { IBM_Plex_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const ibmPlexSans = IBM_Plex_Sans({ variable: "--font-ibm-plex-sans", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Bean Haven - Premium Specialty Coffee Roaster", description: "Discover artisan coffee roasted to perfection. Single-origin blends from sustainable farms worldwide. Fresh, flavorful, fair-trade coffee delivered to your door.", keywords: "specialty coffee, coffee roaster, single-origin, espresso, artisan coffee, sustainable", robots: { index: true, follow: true, }, openGraph: { title: "Bean Haven - Premium Specialty Coffee", description: "Artisan coffee roasted to perfection. Discover our single-origin blends and signature espresso drinks.", type: "website", siteName: "Bean Haven", images: [ { url: "https://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg", alt: "Premium specialty coffee"}, ], }, twitter: { card: "summary_large_image", title: "Bean Haven - Premium Specialty Coffee", description: "Artisan coffee roasted to perfection. Discover our single-origin blends.", images: ["https://img.b2bpic.net/free-photo/pouring-milk-cup-coffee_1153-548.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}