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>
23 lines
475 B
TypeScript
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>
|
|
);
|
|
};
|