diff --git a/client/src/components/navbar.tsx b/client/src/components/navbar.tsx index 406756cd..4255b0f2 100644 --- a/client/src/components/navbar.tsx +++ b/client/src/components/navbar.tsx @@ -116,6 +116,13 @@ const Navbar: PageComponent = (): React.JSX.Element => { Events + {/* Settings */} + {isLoggedIn && ( + + Settings + + )} + {/* Notification */} {isLoggedIn && ( @@ -203,13 +210,20 @@ const Navbar: PageComponent = (): React.JSX.Element => { {/* login */} {!isLoggedIn && ( - + Login/Register )} {/* logout */} - {isLoggedIn && Logout} + {isLoggedIn && ( + <> + + Settings + + Logout + + )}