Files
lcbp3.np-dms.work/frontend/app/layout.jsx
2025-09-21 20:29:15 +07:00

11 lines
346 B
JavaScript
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const metadata = { title: "DMS Laem Chabang Phase 3", description: "Document Management System" };
export default function RootLayout({ children }) {
return (
<html lang="th">
<body className="min-h-screen bg-[linear-gradient(180deg,#F3FBFD_0%,#E6F7FB_100%)]">
{children}
</body>
</html>
);
}