diff --git a/apps/backoffice/src/app/dashboard/layout.tsx b/apps/backoffice/src/app/dashboard/layout.tsx index 0f4db25..423168f 100644 --- a/apps/backoffice/src/app/dashboard/layout.tsx +++ b/apps/backoffice/src/app/dashboard/layout.tsx @@ -4,7 +4,7 @@ import { BackofficeSidebar } from '@imphnen-frontend-service/ui/organisms'; export const AppLayout: FC = (): ReactElement => { return ( -
+
diff --git a/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx b/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx index bd2e665..a5e9b7a 100644 --- a/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx +++ b/libs/ui/src/organisms/backoffice-sidebar/backoffice-sidebar.tsx @@ -1,3 +1,10 @@ +import { + AppstoreOutlined, + AuditOutlined, + LogoutOutlined, + UserOutlined, +} from '@ant-design/icons'; +import { Button } from '../../atoms'; import { FC, ReactElement } from 'react'; import { Link, useLocation } from 'react-router-dom'; @@ -7,88 +14,59 @@ export const BackofficeSidebar: FC = (): ReactElement => { return ( );