diff --git a/packages/nextjs/components/Footer.tsx b/packages/nextjs/components/Footer.tsx index 40c054d4..c37e68ab 100644 --- a/packages/nextjs/components/Footer.tsx +++ b/packages/nextjs/components/Footer.tsx @@ -5,9 +5,11 @@ import { BuidlGuidlLogo } from "~~/components/assets/BuidlGuidlLogo"; import { useTargetNetwork } from "~~/hooks/scaffold-stark/useTargetNetwork"; import { useGlobalState } from "~~/services/store/store"; import { devnet } from "@starknet-react/chains"; -import { CurrencyDollarIcon } from "@heroicons/react/16/solid"; import Link from "next/link"; -import { MagnifyingGlassIcon } from "@radix-ui/react-icons"; +import { + CurrencyDollarIcon, + MagnifyingGlassIcon, +} from "@heroicons/react/24/outline"; /** * Site footer @@ -38,7 +40,7 @@ export const Footer = () => { Block Explorer diff --git a/packages/nextjs/components/Header.tsx b/packages/nextjs/components/Header.tsx index 60b8382d..53dc7c31 100644 --- a/packages/nextjs/components/Header.tsx +++ b/packages/nextjs/components/Header.tsx @@ -24,32 +24,6 @@ export const menuLinks: HeaderMenuLink[] = [ }, ]; -// export const HeaderMenuLinks = () => { -// const pathname = usePathname(); -// -// return ( -// <> -// {menuLinks.map(({ label, href, icon }) => { -// const isActive = pathname === href; -// return ( -//
  • -// -// {icon} -// {label} -// -//
  • -// ); -// })} -// -// ); -// }; - /** * Site header */