feat: Draft dashboard AI-generated

This commit is contained in:
Hafid Nur
2025-03-27 07:46:15 +07:00
parent 542469bc67
commit bd5e46e712
6 changed files with 258 additions and 1 deletions
@@ -0,0 +1,18 @@
import { FC, ReactElement } from 'react';
import { Outlet } from 'react-router-dom';
import { BackofficeSidebar } from '@imphnen-frontend-service/ui/organisms';
export const AppLayout: FC = (): ReactElement => {
return (
<div className="bg-neutral-900 min-h-screen flex justify-center">
<div className="bg-primary-50 min-h-screen max-w-[1280px] w-full flex">
<BackofficeSidebar />
<div className="flex-1 overflow-auto">
<Outlet />
</div>
</div>
</div>
);
};
export default AppLayout;