d6f3eb6411
* new api link for explorer v2 * remove footer add explorer to navbar * include image * @ fix menu icons * + explorer link in footer --------- Co-authored-by: RadekSabacky <radek@nymtech.net>
24 lines
475 B
TypeScript
24 lines
475 B
TypeScript
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import explorerLogo from "../public/images/smiley.png";
|
|
|
|
export const Explorer = () => {
|
|
return (
|
|
<Link
|
|
href={"https://nym.com/explorer"}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<Image
|
|
src={explorerLogo}
|
|
style = {{
|
|
marginRight: "0.6rem"
|
|
}}
|
|
alt={"Network Explorer"}
|
|
width={24}
|
|
height={24}
|
|
/>
|
|
</Link>
|
|
);
|
|
};
|