Files
MIS-Contro-Tower/app/layout.tsx
2026-04-22 05:04:19 +00:00

28 lines
810 B
TypeScript

import type { Metadata } from "next";
import { cookies } from "next/headers";
import "./globals.css";
import { prisma } from "@/lib/prisma";
export async function generateMetadata(): Promise<Metadata> {
return {
title: "MIS Control Tower",
description: "MaliounTech Industrial Suite",
};
}
export default async function RootLayout({ children }: { children: React.ReactNode }) {
const cookieJar = await cookies();
const themeCookie = cookieJar.get("mis_theme")?.value;
const localeCookie = cookieJar.get("mis_locale")?.value;
const theme = themeCookie === "light" ? "light" : "dark";
const locale = localeCookie === "es-MX" ? "es-MX" : "en";
return (
<html lang={locale} data-theme={theme}>
<body className="antialiased">
{children}
</body>
</html>
);
}