update footer
This commit is contained in:
@@ -1,18 +1,17 @@
|
||||
import React from 'react';
|
||||
import Stack from '@mui/material/Stack';
|
||||
import React from "react";
|
||||
import Stack from "@mui/material/Stack";
|
||||
|
||||
const links = [
|
||||
['Twitter', 'https://nymtech.net/go/twitter'],
|
||||
['Telegram', 'https://nymtech.net/go/telegram'],
|
||||
['Discord', 'https://nymtech.net/go/discord'],
|
||||
['GitHub', 'https://nymtech.net/go/github/nym'],
|
||||
['Nym Wallet', 'https://nymtech.net/download/wallet'],
|
||||
['Nym Explorer', 'https://explorer.nymtech.net/'],
|
||||
['Nym Blog', 'https://nymtech.medium.com/'],
|
||||
['Nym Shipyard', 'https://shipyard.nymtech.net/'],
|
||||
["Matrix", "https://matrix.to/#/#dev:nymtech.chat"],
|
||||
["GitHub", "https://nymtech.net/go/github/nym"],
|
||||
["Nym Wallet", "https://nymtech.net/download/wallet"],
|
||||
["Nym Explorer", "https://explorer.nymtech.net/"],
|
||||
["Nym Blog", "https://nymtech.medium.com/"],
|
||||
["Twitter", "https://nymtech.net/go/twitter"],
|
||||
["Telegram", "https://nymtech.net/go/telegram"],
|
||||
];
|
||||
export const Footer = () => (
|
||||
<Stack direction="row" spacing={3}>
|
||||
<Stack spacing={2}>
|
||||
{links.map((link) => (
|
||||
<a key={link[1]} href={link[1]}>
|
||||
{link[0]}
|
||||
|
||||
Reference in New Issue
Block a user