Skip to content

Commit

Permalink
Add builders page in navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
wildanvin committed Jun 8, 2024
1 parent 1e4430a commit 4b8ae38
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Link from "next/link";
import { usePathname } from "next/navigation";
import { zeroAddress } from "viem";
import { useAccount } from "wagmi";
import { Bars3Icon, BugAntIcon, CheckIcon, HandThumbUpIcon, XMarkIcon } from "@heroicons/react/24/outline";
import { Bars3Icon, BugAntIcon, CheckIcon, HandThumbUpIcon, UsersIcon, XMarkIcon } from "@heroicons/react/24/outline";
import { FaucetButton, RainbowKitCustomConnectButton } from "~~/components/scaffold-eth";
import { useOutsideClick, useScaffoldReadContract } from "~~/hooks/scaffold-eth";

Expand All @@ -21,6 +21,11 @@ export const menuLinks: HeaderMenuLink[] = [
label: "Home",
href: "/",
},
{
label: "Builders",
href: "/builders",
icon: <UsersIcon className="h-4 w-4" />,
},
{
label: "Debug Contracts",
href: "/debug",
Expand Down

0 comments on commit 4b8ae38

Please sign in to comment.