diff options
| author | Shreyans Jain <[email protected]> | 2025-03-22 07:55:52 +0530 |
|---|---|---|
| committer | Shreyans Jain <[email protected]> | 2025-03-22 07:55:52 +0530 |
| commit | 53bea61ae24b1c80b831516159ec79ab8b09b50e (patch) | |
| tree | 226d0c4c3689b6811bd5a29651bac23ef9cce2a1 /apps | |
| parent | fix padding in add memory modal (diff) | |
| download | supermemory-53bea61ae24b1c80b831516159ec79ab8b09b50e.tar.xz supermemory-53bea61ae24b1c80b831516159ec79ab8b09b50e.zip | |
remove profile button for now
Signed-off-by: Shreyans Jain <[email protected]>
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/app/components/Navbar.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/web/app/components/Navbar.tsx b/apps/web/app/components/Navbar.tsx index 1a365ffb..dc5b8485 100644 --- a/apps/web/app/components/Navbar.tsx +++ b/apps/web/app/components/Navbar.tsx @@ -91,11 +91,13 @@ function Navbar({ user }: { user?: User }) { </DropdownMenuLabel> <DropdownMenuSeparator /> <DropdownMenuGroup> + {/* TODO: Add profile modal */} + {/* <ProfileModal> <DropdownMenuItem> <UserIcon className="mr-2 h-4 w-4" /> <span>Profile</span> - <DropdownMenuShortcut>⇧⌘P</DropdownMenuShortcut> </DropdownMenuItem> + </ProfileModal> */} <DropdownMenuItem onSelect={toggleTheme}> {theme === Theme.LIGHT ? ( <Sun className="mr-2 h-4 w-4" /> @@ -105,13 +107,13 @@ function Navbar({ user }: { user?: User }) { <span>{theme === Theme.LIGHT ? "Dark mode" : "Light mode"}</span> </DropdownMenuItem> <DropdownMenuItem asChild> - <a href="https://portal.productboard.com/8rhspck6pdelv78mptczaena" target="_blank"> + <a href="https://portal.productboard.com/8rhspck6pdelv78mptczaena" target="_blank" rel="noreferrer"> <LifeBuoy className="mr-2 h-4 w-4" /> <span>Support</span> </a> </DropdownMenuItem> <DropdownMenuItem asChild> - <a href="https://api.supermemory.ai" target="_blank"> + <a href="https://api.supermemory.ai" target="_blank" rel="noreferrer"> <Cloud className="mr-2 h-4 w-4" /> <span>API</span> </a> |