diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..0ffb849 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Nexroit - Enciclopedia dei Sogni Umani", + description: "Scopri profili autentici di persone reali da tutto il mondo. I loro sogni, avventure e storie di vita in una piattaforma globale celebrativa.", + keywords: "profili, sogni, storie umane, comunità globale, persone reali, avventure, Italian platform", + metadataBase: new URL("https://nexroit.com"), + alternates: { + canonical: "https://nexroit.com", + }, + openGraph: { + title: "Nexroit - Enciclopedia dei Sogni", + description: "Una comunità globale che celebra l'autenticità della vita umana attraverso profili personali, sogni e avventure.", + url: "https://nexroit.com", + siteName: "Nexroit", + type: "website", + images: [ + { + url: "https://nexroit.com/og-image.jpg", + alt: "Nexroit - Encyclopedia of Human Dreams", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Nexroit - Enciclopedia dei Sogni Umani", + description: "Scopri storie autentiche di persone reali da tutto il mondo.", + images: ["https://nexroit.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}