Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

25 righe
517 B

  1. import type { Metadata } from "next";
  2. import { detectLanguage } from "@/i18n";
  3. import ThemeRegistry from "@/theme/ThemeRegistry";
  4. export const metadata: Metadata = {
  5. title: "TSMS",
  6. description: "TSMS - Timesheet Management System",
  7. };
  8. export default async function RootLayout({
  9. children,
  10. }: {
  11. children: React.ReactNode;
  12. }) {
  13. const lang = await detectLanguage();
  14. return (
  15. <html lang={lang}>
  16. <body>
  17. <ThemeRegistry lang={lang}>{children}</ThemeRegistry>
  18. </body>
  19. </html>
  20. );
  21. }