diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 572c8c4..65dddbf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,43 @@ import type { Metadata } from "next"; +import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Vitaliy - Celebrate Your Authentic Self", description: "Join a vibrant community dedicated to pride, inclusion, and empowerment. Together, we create spaces where everyone belongs."}; + title: "Vitaliy - Celebrate Your Authentic Self", description: "Join a vibrant LGBTQ+ community dedicated to pride, inclusion, and empowerment. Connect, grow, and celebrate with thousands of like-minded individuals.", keywords: "LGBTQ+, pride, community, inclusion, support, networking, events", robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Vitaliy - LGBTQ+ Community Platform", description: "Create safe spaces for authentic self-expression, connection, and growth.", siteName: "Vitaliy", type: "website"}, + twitter: { + card: "summary_large_image", title: "Vitaliy - Celebrate Your Authentic Self", description: "Join the vibrant LGBTQ+ community dedicated to pride and empowerment."}, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - -
{children} + +