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: "Coffee Haven - Premium Coffee Shop & Café", description: "Experience exceptional specialty coffee, fresh pastries, and a warm atmosphere at Coffee Haven. Perfect for coffee lovers and remote workers.", keywords: "coffee shop, café, specialty coffee, espresso, coffee near me, cozy café", metadataBase: new URL("https://coffeehaven.com"), alternates: { canonical: "https://coffeehaven.com" }, openGraph: { title: "Coffee Haven - Premium Coffee & Café Experience", description: "Discover the finest specialty coffee and welcoming atmosphere at Coffee Haven.", url: "https://coffeehaven.com", siteName: "Coffee Haven", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766919707214-xfwl0qtf.jpg", alt: "Coffee Haven Coffee Shop" } ] }, twitter: { card: "summary_large_image", title: "Coffee Haven - Premium Coffee Shop", description: "Experience exceptional specialty coffee in a warm, welcoming atmosphere.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766919707214-xfwl0qtf.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}