diff --git a/src/components/layouts/Footer.tsx b/src/components/layouts/Footer.tsx index fe5f159160..c0691e354a 100644 --- a/src/components/layouts/Footer.tsx +++ b/src/components/layouts/Footer.tsx @@ -2,7 +2,13 @@ import { Grid, GridItem, Image, Link, Stack, Text } from '@chakra-ui/react'; import { FC } from 'react'; import NextLink from 'next/link'; -import { DOCS_PAGE, DOWNLOADS_PAGE, GETH_TWITTER_URL } from '../../constants' +import { + DOCS_PAGE, + DOWNLOADS_PAGE, + GETH_DISCORD_URL, + GETH_REPO_URL, + GETH_TWITTER_URL +} from '../../constants' export const Footer: FC = () => { return ( @@ -65,7 +71,11 @@ export const Footer: FC = () => { alignItems="center" > - Discord logo + + + Discord logo + + @@ -75,7 +85,11 @@ export const Footer: FC = () => { alignItems="center" > - GitHub logo + + + GitHub logo + + diff --git a/src/constants.ts b/src/constants.ts index 9d52d22697..fdca5bca65 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -10,4 +10,5 @@ export const ETHEREUM_ORG_RUN_A_NODE_URL = 'https://ethereum.org/en/run-a-node/' export const ETHEREUM_FOUNDATION_URL = 'https://ethereum.foundation'; export const GETH_REPO_URL = 'https://github.com/ethereum/go-ethereum'; export const GETH_TWITTER_URL = 'https://twitter.com/go_ethereum'; +export const GETH_DISCORD_URL = 'https://discord.com/invite/nthXNEv'; export const GO_URL = 'https://go.dev/';