import type { Metadata } from "next"; import { getLocale, t } from "@/lib/i18n"; import "./globals.css"; export async function generateMetadata(): Promise { const locale = await getLocale(); return { title: t(locale, "meta", "title"), description: t(locale, "meta", "description") }; } export default async function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { const locale = await getLocale(); return ( {children} ); }