Files
mfahampshire d6f3eb6411 Max/new explorer url (#5522)
* 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>
2025-03-17 14:15:10 +00:00

23 lines
475 B
TypeScript

import Image from "next/image";
import Link from "next/link";
import matrixLogo from "../public/images/matrix-logo.png";
export const Matrix = () => {
return (
<Link
href={"https://matrix.to/#/#dev:nymtech.chat"}
target="_blank"
rel="noopener noreferrer"
>
<Image src={matrixLogo}
style = {{
marginRight: "0.6rem"
}}
alt={"Matrix Logo"}
width={20}
height={24}
/>
</Link>
);
};