import type { Metadata } from "next"; import { Lora } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const lora = Lora({ variable: "--font-lora", subsets: ["latin"], }); export const metadata: Metadata = { title: "PRVNE – Five Italian Friends United by Rome", description: "PRVNE is a crew of five friends from Convitto Vittorio Emanuele Secondo in Rome. Explore their story, members, and the bonds that unite them.", keywords: "PRVNE, Italian crew, Rome, Convitto, friendship, brotherhood", metadataBase: new URL("https://prvne.com"), alternates: { canonical: "https://prvne.com" }, openGraph: { title: "PRVNE – Five Italian Friends United by Rome", description: "Experience the story of PRVNE: five friends connected by shared memories from Rome's most prestigious academy.", url: "https://prvne.com", siteName: "PRVNE", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767628977134-l5g1yl82.jpg", alt: "PRVNE crew" } ] }, twitter: { card: "summary_large_image", title: "PRVNE – Five Italian Friends United by Rome", description: "Five friends, one eternal bond. Forged in Rome, spanning the world.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767628977134-l5g1yl82.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}