16 lines
411 B
TypeScript
16 lines
411 B
TypeScript
import { Box } from "@mui/material";
|
|
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import matrixLogo from "../images/matrix-logo.png";
|
|
export const Matrix = () => {
|
|
return (
|
|
<Link
|
|
href={"https://matrix.to/#/#dev:nymtech.chat"}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<Image src={matrixLogo} alt={"Matrix Logo"} width={20} height={24} />
|
|
</Link>
|
|
);
|
|
};
|