Skip to content

Commit

Permalink
feat: add menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
pbkompasz committed Oct 25, 2024
1 parent a66b6ec commit dec5928
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React, { useCallback, useRef, useState } from "react";
import Image from "next/image";
import Link from "next/link";
import { usePathname } from "next/navigation";
import { FaUsers } from "react-icons/fa";
import { Bars3Icon, BugAntIcon } from "@heroicons/react/24/outline";
import { FaucetButton, RainbowKitCustomConnectButton } from "~~/components/scaffold-eth";
import { useOutsideClick } from "~~/hooks/scaffold-eth";
Expand All @@ -24,6 +25,11 @@ export const menuLinks: HeaderMenuLink[] = [
href: "/debug",
icon: <BugAntIcon className="h-4 w-4" />,
},
{
label: "Builders",
href: "/builders",
icon: <FaUsers className="h-4 w-4" />,
},
];

export const HeaderMenuLinks = () => {
Expand Down

0 comments on commit dec5928

Please sign in to comment.