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", description: "Discover exceptional coffee crafted with passion. Visit our cozy cafe for single-origin espresso, cappuccinos, and warm hospitality.", keywords: "coffee shop, specialty coffee, espresso, cafe, premium coffee, barista", robots: { index: true, follow: true }, openGraph: { title: "Coffee Haven - Premium Coffee Shop", description: "Discover exceptional coffee crafted with passion. Visit our cozy cafe for single-origin espresso, cappuccinos, and warm hospitality.", url: "https://coffeehaven.com", siteName: "Coffee Haven", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766847964453-iyz81ypi.jpg", alt: "Coffee Haven interior" } ] }, twitter: { card: "summary_large_image", title: "Coffee Haven - Premium Coffee Shop", description: "Discover exceptional coffee crafted with passion. Visit our cozy cafe for single-origin espresso, cappuccinos, and warm hospitality.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766847964453-iyz81ypi.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}