import type { Metadata, Viewport } from "next"; // Self-hosted fonts (no Google fetch at build time → CI builds work offline / in Iran). import "@fontsource-variable/vazirmatn"; import "@fontsource-variable/plus-jakarta-sans"; import "./globals.css"; import { I18nProvider } from "@/lib/i18n"; export const metadata: Metadata = { title: "برگ وسط | Barg-e Vasat — بازی حکم آنلاین", description: "برگ وسط — بازی حکم آنلاین ایرانی با حریفهای واقعی و هوشمند (Barg-e Vasat — online Persian Hokm)", manifest: "/manifest.webmanifest", appleWebApp: { capable: true, statusBarStyle: "black-translucent", title: "برگ وسط" }, }; export const viewport: Viewport = { themeColor: "#060c1f", width: "device-width", initialScale: 1, maximumScale: 1, userScalable: false, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (