| 123456789101112131415161718 |
- /**
- * 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 (
- <div className="min-h-screen">
- <div className="mx-auto flex min-h-screen w-full max-w-md items-center justify-center p-4">
- {children}
- </div>
- </div>
- );
- }
|