import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "All Dmitriys Are Gays - LGBTQ+ Community Center", description: "A safe, inclusive community center celebrating LGBTQ+ pride with support groups, counseling, events, and programs for all.", keywords: "LGBTQ+, gay center, community, pride, support groups, counseling, events", robots: { index: true, follow: true }, openGraph: { title: "All Dmitriys Are Gays - LGBTQ+ Community Center", description: "Join our welcoming community center celebrating LGBTQ+ pride with events, support, and belonging.", siteName: "All Dmitriys Are Gays", type: "website" }, twitter: { card: "summary_large_image", title: "All Dmitriys Are Gays Community Center", description: "Safe space for LGBTQ+ community, support groups, and pride celebration" } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}