import type { Metadata } from "next"; import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Coffee Haven - Artisan Coffee in Your Neighborhood", description: "Discover premium artisan coffee at Coffee Haven. Experience expertly crafted espresso, cappuccino, and cold brew with exceptional service and warm ambiance.", keywords: ["coffee shop", "artisan coffee", "espresso", "cafe", "local coffee"], metadataBase: new URL("https://coffeehaven.com"), alternates: { canonical: "https://coffeehaven.com" }, openGraph: { title: "Coffee Haven - Premium Artisan Coffee", description: "Experience the perfect blend of quality beans, expert brewing, and warm hospitality at Coffee Haven.", type: "website", siteName: "Coffee Haven", images: [ { url: "https://img.b2bpic.net/free-photo/glass-with-delicious-coffee_23-2149703760.jpg", alt: "Coffee Haven - Beautifully arranged coffee setup" } ] }, twitter: { card: "summary_large_image", title: "Coffee Haven - Premium Artisan Coffee", description: "Experience artisan coffee crafted with passion and expertise.", images: ["https://img.b2bpic.net/free-photo/glass-with-delicious-coffee_23-2149703760.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}