import React from 'react' import styled from 'styled-components' import {Flex, Box} from 'rebass' import {LinkButton} from '../Button' const Container = styled(Flex)` background-color: ${(props) => props.theme.colors.purpleBlack}; color: ${(props) => props.theme.colors.white}; ` const ContentWrapper = styled(Flex)` max-width: 640px; align-items: center; ` const Text = styled.p` line-height: 1.5; text-align: center; ` const aStyle = { color: '#fb3b49', textDecoration: 'none' } const DarkBlock = () => { return (

The current stable version of npm is available on GitHub.

To upgrade, run: npm install npm@latest -g

To report bugs or submit feature requests, please XXX.

read docs
) } export default DarkBlock