diff --git a/web/src/components/Navbar.tsx b/web/src/components/Navbar.tsx index 34efedf..cb4cf6e 100644 --- a/web/src/components/Navbar.tsx +++ b/web/src/components/Navbar.tsx @@ -5,6 +5,7 @@ import { FiLogOut, FiUser } from 'react-icons/fi'; import { SiEthereum } from 'react-icons/si'; import { useAuth, useLogout } from '../api/auth'; +import { SidebarHamburger } from './layout/SidebarHamburger'; import { LoginButton } from './LoginButton'; export const Navbar: FC = () => { @@ -29,6 +30,7 @@ export const Navbar: FC = () => { <>
+ { +export const Sidebar = ({ className = '' }: { className?: string } = {}) => { const { pathname } = useRouterState({ select: (s) => s.location }); const { isAuthenticated } = useAuth(); return ( -
+