import React from "react"; import Link from "next/link"; import { useRouter } from "next/router"; import { Popover } from "@headlessui/react"; import { ChevronDownIcon } from "@heroicons/react/24/solid"; import SearchInput from "components/SearchInput"; import Wallet from "./Wallet"; const mockedAccounts = [ { label: "Subaccount 1", }, { label: "Subaccount 2", }, { label: "Subaccount 3", }, { label: "Subaccount 4", }, ]; const NavLink = ({ href, children }: { href: string; children: string }) => { const router = useRouter(); return ( {children} ); }; const Navigation = () => { return (
$: 2500