import { Center, Flex, Link, Text } from '@chakra-ui/react'; import { FC } from 'react'; import NextLink from 'next/link'; import { DOCS_PAGE, DOWNLOADS_PAGE, GETH_DISCORD_URL, GETH_REPO_URL, GETH_TWITTER_URL } from '../../constants'; import { DiscordIcon, GitHubIcon, TwitterIcon } from '../UI/icons'; const hoverStyles = { textDecoration: 'none', bg: 'primary', color: 'bg !important' }; export const Footer: FC = () => { return (
DOWNLOADS
DOCUMENTATION
{`© 2013–${new Date().getFullYear()}. The go-ethereum Authors.`}
); };