import type { Metadata } from "next"; import { Epilogue } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const epilogue = Epilogue({ variable: "--font-epilogue", subsets: ["latin"], }); export const metadata: Metadata = { title: "Brew Haven - Premium Artisan Coffee Shop", description: "Discover Brew Haven, your destination for expertly crafted coffee, premium beans, and a welcoming atmosphere. Visit us daily from 6AM-8PM.", keywords: "coffee shop, artisan coffee, espresso, cappuccino, cafe, specialty coffee", openGraph: { title: "Brew Haven - Premium Artisan Coffee", description: "Experience exceptional coffee crafted with passion. Premium beans, expert baristas, and cozy ambiance.", siteName: "Brew Haven", type: "website", images: [{ url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766403060798-jyic1c5u.jpg", alt: "Brew Haven - Premium Coffee" }] }, twitter: { card: "summary_large_image", title: "Brew Haven Coffee Shop", description: "Your favorite coffee destination since 2015", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766403060798-jyic1c5u.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}