diff --git a/apps/web/src/app/main/layout/UserMenu.tsx b/apps/web/src/app/main/layout/UserMenu.tsx
index 97396fd..2591253 100644
--- a/apps/web/src/app/main/layout/UserMenu.tsx
+++ b/apps/web/src/app/main/layout/UserMenu.tsx
@@ -1,49 +1,70 @@
-import { Avatar, Menu, Dropdown } from 'antd';
-import { LogoutOutlined, SettingOutlined } from '@ant-design/icons';
-import { useAuth } from '@web/src/providers/auth-provider';
-import { useNavigate } from 'react-router-dom';
+import { Avatar, Menu, Dropdown } from "antd";
+import {
+ LogoutOutlined,
+ SettingOutlined,
+ UserAddOutlined,
+ UserSwitchOutlined,
+} from "@ant-design/icons";
+import { useAuth } from "@web/src/providers/auth-provider";
+import { useNavigate } from "react-router-dom";
export const UserMenu = () => {
- const { isAuthenticated, logout, user } = useAuth();
- const navigate = useNavigate();
+ const { isAuthenticated, logout, user } = useAuth();
+ const navigate = useNavigate();
- return (
-
- );
-};
\ No newline at end of file
+ return (
+
+ );
+};