Files
juwan-frontend/app/(auth)/layout.tsx
T

10 lines
308 B
TypeScript

export default function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<div className="flex min-h-screen items-center justify-center bg-muted/30">
<div className="w-full max-w-md rounded-lg border bg-background p-6 shadow-sm">
{children}
</div>
</div>
)
}