import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "Coffee House - Premium Coffee & Cozy Cafe", description: "Experience exceptional specialty coffee, welcoming atmosphere, and the perfect spot to work or relax. Visit our cafe today.", keywords: "coffee shop, specialty coffee, cafe, espresso, cozy workspace", robots: { index: true, follow: true, }, openGraph: { title: "Coffee House - Premium Coffee & Cozy Cafe", description: "Experience exceptional specialty coffee and welcoming atmosphere", type: "website", siteName: "Coffee House", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766321575502-dja1nmgo.jpg", alt: "Premium coffee drink", }, ], }, twitter: { card: "summary_large_image", title: "Coffee House - Premium Coffee & Cozy Cafe", description: "Exceptional specialty coffee in a welcoming atmosphere", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766321575502-dja1nmgo.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}