import type { Metadata } from "next"; import { Rubik } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const rubik = Rubik({ variable: "--font-rubik", subsets: ["latin"], }); export const metadata: Metadata = { title: "Creator Management & Mass Distribution | NEXUS Agency Thailand", description: "Leading creator management platform in Southeast Asia. Strategic talent management, 45+ platform distribution, and brand partnerships for digital creators.", keywords: "creator management, influencer agency, content distribution, Thailand, Southeast Asia, social media marketing", metadataBase: new URL("https://nexus.co"), alternates: { canonical: "https://nexus.co" }, robots: { index: true, follow: true }, openGraph: { title: "NEXUS - Creator Economy Unleashed", description: "Transform your creator business with strategic management and mass multi-platform distribution", siteName: "NEXUS", type: "website", images: [{ url: "https://img.b2bpic.net/free-photo/cozy-dark-loft-attractive-student-is-sitting-table-while-studying_613910-13260.jpg", alt: "NEXUS Creative Studio" }] }, twitter: { card: "summary_large_image", title: "Creator Management & Distribution | NEXUS", description: "Amplify creator voices across 45+ platforms with strategic management and brand partnerships", images: ["https://img.b2bpic.net/free-photo/cozy-dark-loft-attractive-student-is-sitting-table-while-studying_613910-13260.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}