Skip to content

Commit

Permalink
fix merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
karlavasquez8 committed Apr 16, 2024
1 parent 25f2b61 commit 146e3a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 29 deletions.
8 changes: 5 additions & 3 deletions packages/nextjs/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -38,7 +40,7 @@ export const Footer = () => {
<Link
href="/blockexplorer"
passHref
className="btn btn-primary btn-sm font-normal gap-1"
className="btn btn-primary btn-sm font-normal gap-1 text-base-100"
>
<MagnifyingGlassIcon className="h-4 w-4" />
<span>Block Explorer</span>
Expand Down
26 changes: 0 additions & 26 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
// <li key={href}>
// <Link
// href={href}
// passHref
// className={`${
// isActive ? "bg-secondary shadow-md" : ""
// } hover:bg-secondary hover:shadow-md focus:!bg-secondary active:!text-neutral py-1.5 px-3 text-sm rounded-full gap-2 grid grid-flow-col`}
// >
// {icon}
// <span>{label}</span>
// </Link>
// </li>
// );
// })}
// </>
// );
// };

/**
* Site header
*/
Expand Down

0 comments on commit 146e3a6

Please sign in to comment.