Operations dashboard screens are added
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
import { AuthLayoutProps } from "@/constants/types";
|
||||
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]">
|
||||
{/* Left Panel of the KAFM page */}
|
||||
<LeftPanel />
|
||||
|
||||
|
||||
{/* Login Page Right Side */}
|
||||
<div className="flex items-center justify-center p-8">
|
||||
{children}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user