diff --git a/components/navbar/Navbar.tsx b/components/navbar/Navbar.tsx index 15044276..06d01b37 100644 --- a/components/navbar/Navbar.tsx +++ b/components/navbar/Navbar.tsx @@ -6,6 +6,7 @@ import { usePathname } from "next/navigation"; import { SearchInput } from "./SearchInput"; import { NetworkSwitcher } from "./NetworkSwitcher"; import { WalletMenu } from "./WalletMenu"; +import { WalletBalance } from "./WalletBalance"; import { ConnectWalletAction } from "./ConnectWalletAction"; import { ConnectWalletModal } from "@/components/connect-wallet-modal"; import { useWalletContext } from "@/context/WalletContext"; @@ -101,7 +102,10 @@ export function Navbar() { Loading... ) : connected ? ( - +
+ + +
) : ( ) : connected ? ( - - - {user?.name?.[0] || "U"} - +
+ + + + {user?.name?.[0] || "U"} + +
) : (