import type { Metadata } from "next"; import { Cormorant_Garamond } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant-garamond", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Dmitry Coffeeshop - LGBTQ+ Friendly Coffee & Community", description: "Welcome to Dmitry Coffeeshop, a proudly LGBTQ+-owned safe space serving exceptional specialty coffee and fostering inclusive community connections.", keywords: "LGBTQ+ coffeeshop, inclusive cafe, specialty coffee, community space, safe space", robots: { index: true, follow: true }, openGraph: { title: "Dmitry Coffeeshop - Your Safe Space for Coffee & Connection", description: "Join our vibrant LGBTQ+-friendly community for premium coffee and authentic belonging.", siteName: "Dmitry Coffeeshop", url: "https://dmitrycoffeeshop.com", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766478629120-iqvbvy87.jpg", alt: "Dmitry Coffeeshop welcome experience" } ] }, twitter: { card: "summary_large_image", title: "Dmitry Coffeeshop - LGBTQ+ Community Cafe", description: "Exceptional coffee, authentic community, and unconditional welcome.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766478629120-iqvbvy87.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}