bottom nav bar: change last item to your trades

This commit is contained in:
mantikoros 2022-02-02 12:56:02 -06:00
parent f80ef1cd34
commit 6ad40cf75d

View File

@ -89,13 +89,13 @@ function BottomNavBar(props: { user: User }) {
</a> </a>
</Link> </Link>
<Link href={`/${user.username}`}> <Link href="/trades">
<a <a
href="#" href="#"
className="w-full block py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700" className="w-full block py-2 px-3 text-center hover:bg-indigo-200 hover:text-indigo-700"
> >
<CollectionIcon className="h-6 w-6 my-1 mx-auto" aria-hidden="true" /> <CollectionIcon className="h-6 w-6 my-1 mx-auto" aria-hidden="true" />
{/* {user.username} */} {/* Your Trades */}
</a> </a>
</Link> </Link>
</nav> </nav>