diff --git a/web/components/nav-bar.tsx b/web/components/nav-bar.tsx index 210a1814..216a626a 100644 --- a/web/components/nav-bar.tsx +++ b/web/components/nav-bar.tsx @@ -35,16 +35,18 @@ export function NavBar(props: { {children} - - - + {!user && ( + + + + )} {!isLandingPage && ( diff --git a/web/components/profile-menu.tsx b/web/components/profile-menu.tsx index 2ceb18e6..4f20a1a5 100644 --- a/web/components/profile-menu.tsx +++ b/web/components/profile-menu.tsx @@ -59,7 +59,10 @@ function getNavigationOptions(user: User, options: { mobile: boolean }) { name: 'Discord', href: 'https://discord.gg/eHQBNBqXuh', }, - ...(mobile ? [{ name: 'About', href: '/about' }] : []), + { + name: 'About', + href: '/about', + }, { name: 'Sign out', href: '#',