Login and dashboard added
This commit is contained in:
16
components/auth/authlayout.tsx
Normal file
16
components/auth/authlayout.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import LeftPanel from "./leftpanel";
|
||||
|
||||
interface AuthLayoutProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function AuthLayout({ children }: AuthLayoutProps) {
|
||||
return (
|
||||
<main className="min-h-screen grid lg:grid-cols-2 bg-[#081321]">
|
||||
<LeftPanel />
|
||||
<div className="flex items-center justify-center p-8">
|
||||
{children}
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user