Login and dashboard added

This commit is contained in:
2026-07-13 16:09:15 +01:00
commit ca40bd4095
36 changed files with 7821 additions and 0 deletions

View 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>
);
}