// frontend/app/(auth)/layout.jsx export const metadata = { title: "Authentication | DMS", description: "Login and user authentication pages for Document Management System", }; export default function AuthLayout({ children }) { return ( //
{/* Header */}

Document Management System

LCBP3 Project

{/* Main content (children = page.jsx ของ login/register) */}
{children}
{/* Footer */}
© {new Date().getFullYear()} np-dms.work
// ); }