22 lines
484 B
TypeScript
22 lines
484 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: {
|
||
|
|
default: 'Sign In',
|
||
|
|
template: '%s | Port Nimara CRM',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function AuthLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<div
|
||
|
|
className="min-h-screen flex items-center justify-center wave-watermark"
|
||
|
|
style={{ backgroundColor: '#1e2844' }}
|
||
|
|
>
|
||
|
|
<div className="w-full max-w-md px-4">
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|