import type { Metadata } from "next"; // import { detectLanguage } from "@/i18n"; // import ThemeRegistry from "@/theme/ThemeRegistry"; import { detectLanguage } from "../i18n"; import ThemeRegistry from "../theme/ThemeRegistry"; export const metadata: Metadata = { title: "FPSMS", description: "FPSMS - xxxx Management System", }; export default async function RootLayout({ children, }: { children: React.ReactNode; }) { const lang = await detectLanguage(); return (