import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { PostHogWrapper } from "@/components/PostHogWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Coffee Haven - Premium Specialty Coffee Shop", description: "Experience premium specialty coffee crafted with care. Award-winning baristas, ethically sourced beans, and a cozy atmosphere await you at Coffee Haven.", keywords: "specialty coffee, espresso, latte, cappuccino, coffee shop, downtown cafe", metadataBase: new URL("https://coffeehaven.com"), alternates: { canonical: "https://coffeehaven.com" }, openGraph: { title: "Coffee Haven - Premium Specialty Coffee", description: "Discover the finest specialty coffee in town. Ethically sourced, expertly crafted, passionately served.", type: "website", siteName: "Coffee Haven", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/uploaded-1765470863294-xc12xfcq.jpg", alt: "Coffee Haven - Premium Specialty Coffee Shop" }] }, twitter: { card: "summary_large_image", title: "Coffee Haven - Premium Specialty Coffee", description: "Experience the finest specialty coffee in town with ethically sourced beans and expert baristas.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/uploaded-1765470863294-xc12xfcq.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}