/** * Public layout for routes that should not display the authenticated app shell. * * Examples: * - /login * * Keep it minimal and centered. * The root layout (app/layout.js) already provides theme + global styling. */ export default function PublicLayout({ children }) { return (
{children}
); }