19 lines
640 B
TypeScript
19 lines
640 B
TypeScript
import { Code2 } from "lucide-react";
|
|
|
|
interface LoginLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export function LoginLayout({ children }: LoginLayoutProps) {
|
|
return (
|
|
<div className="min-h-screen bg-gradient-to-br from-slate-950 via-slate-900 to-slate-950 relative overflow-hidden">
|
|
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_top,_var(--tw-gradient-stops))] from-blue-900/20 via-slate-900 to-slate-950" />
|
|
<div className="absolute inset-0 bg-grid-white/5 bg-[size:50px_50px]" />
|
|
|
|
<div className="relative z-10 container mx-auto py-16 px-6">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|