diff --git a/apps/app/components/workspace/sidebar-dropdown.tsx b/apps/app/components/workspace/sidebar-dropdown.tsx
index b8f68cf9a2..c9addf8db4 100644
--- a/apps/app/components/workspace/sidebar-dropdown.tsx
+++ b/apps/app/components/workspace/sidebar-dropdown.tsx
@@ -16,7 +16,7 @@ import useToast from "hooks/use-toast";
import userService from "services/user.service";
import authenticationService from "services/authentication.service";
// components
-import { Avatar, Loader } from "components/ui";
+import { Avatar, Icon, Loader } from "components/ui";
// icons
import { CheckIcon, PlusIcon } from "@heroicons/react/24/outline";
// helpers
@@ -40,6 +40,19 @@ const userLinks = (workspaceSlug: string, userId: string) => [
},
];
+const profileLinks = (workspaceSlug: string, userId: string) => [
+ {
+ name: "View profile",
+ icon: "account_circle",
+ link: `/${workspaceSlug}/profile/${userId}`,
+ },
+ {
+ name: "Settings",
+ icon: "settings",
+ link: `/${workspaceSlug}/me/profile`,
+ },
+];
+
export const WorkspaceSidebarDropdown = () => {
const router = useRouter();
const { workspaceSlug } = router.query;
@@ -90,8 +103,8 @@ export const WorkspaceSidebarDropdown = () => {
};
return (
-