diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 3a60ba304..13be13810 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -693,6 +693,7 @@ export function Navbar({ children }: { children: React.ReactNode }) { setMobileMenuKey(null)} onNavigate={() => setMobileMenuOpen(false)} onOpenLibraries={() => { @@ -836,12 +837,14 @@ function DesktopNavDropdown({ function MobileNavigation({ activeKey, + loadAuthControls, onBack, onNavigate, onOpenLibraries, onSelect, }: { activeKey: NavMenuKey | null + loadAuthControls: boolean onBack: () => void onNavigate: () => void onOpenLibraries: () => void @@ -859,6 +862,18 @@ function MobileNavigation({ } } + const signIn = ( + + + Sign In + + ) + return (