import type { Metadata } from "next"; import { Cormorant } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorant = Cormorant({ variable: "--font-cormorant", subsets: ["latin"], }); export const metadata: Metadata = { title: "Krasotka | Premier Model Agency Russia", description: "Discover exceptional talent with Krasotka, Russia's premier model agency. 500+ talented models for runway, editorial, and commercial bookings.", keywords: "model agency, talent management, casting services, fashion models, Russia", metadataBase: new URL("https://krasotka-agency.ru"), alternates: { canonical: "https://krasotka-agency.ru" }, openGraph: { title: "Krasotka | Premier Model Agency", description: "Connecting visionary brands with extraordinary talent since 2009", url: "https://krasotka-agency.ru", siteName: "Krasotka", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767698829767-sl4kacxs.jpg", alt: "Krasotka featured model" } ] }, twitter: { card: "summary_large_image", title: "Krasotka | Premier Model Agency", description: "Exceptional talent management and casting services", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767698829767-sl4kacxs.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}