import React from 'react' import styled from 'styled-components' import { Button, Heading, Text, LogoIcon } from '@pancakeswap/uikit' import Page from 'components/Layout/Page' import { useTranslation } from 'contexts/Localization' const StyledNotFound = styled.div` align-items: center; display: flex; flex-direction: column; height: calc(100vh - 64px); justify-content: center; ` const NotFound = () => { const { t } = useTranslation() return ( 404 {t('Oops, page not found.')} ) } export default NotFound