import type { Metadata } from "next"; import { JetBrains_Mono } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const jetBrainsMono = JetBrains_Mono({ variable: "--font-jetbrains-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "Premium Coffee | Fresh Roasted & Ethically Sourced | CoffeeHub", description: "Discover exceptional, freshly roasted specialty coffee sourced directly from ethical farmers. Fair trade, artisan blended, and delivered within 48 hours.", keywords: "specialty coffee, fresh roasted, fair trade coffee, artisan blends, premium coffee beans", metadataBase: new URL("https://coffeehub.com"), alternates: { canonical: "https://coffeehub.com" }, openGraph: { title: "CoffeeHub - Premium Specialty Coffee", description: "Handcrafted, ethically sourced, and perfectly roasted coffee delivered to your door.", type: "website", siteName: "CoffeeHub", images: [{ url: "https://img.b2bpic.net/free-photo/aerial-view-person-making-drip-coffee_53876-20644.jpg", alt: "Premium coffee brewing" }] }, twitter: { card: "summary_large_image", title: "CoffeeHub - Exceptional Coffee", description: "Fresh roasted, ethically sourced specialty coffee.", images: ["https://img.b2bpic.net/free-photo/aerial-view-person-making-drip-coffee_53876-20644.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}