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>
22 lines
626 B
TypeScript
22 lines
626 B
TypeScript
import React from "react";
|
|
import Stack from "@mui/material/Stack";
|
|
|
|
const links = [
|
|
["Matrix", "https://matrix.to/#/#dev:nymtech.chat"],
|
|
["GitHub", "https://nymtech.net/go/github/nym"],
|
|
["Nym Wallet", "https://nymtech.net/download/wallet"],
|
|
["Nym Explorer", "https://nym.com/explorer/"],
|
|
["Nym Blog", "https://nymtech.medium.com/"],
|
|
["Twitter", "https://nymtech.net/go/x"],
|
|
["Telegram", "https://nymtech.net/go/telegram"],
|
|
];
|
|
export const Footer = () => (
|
|
<Stack direction="row" spacing={2}>
|
|
{links.map((link) => (
|
|
<a key={link[1]} href={link[1]}>
|
|
{link[0]}
|
|
</a>
|
|
))}
|
|
</Stack>
|
|
);
|