import styled from '@emotion/styled'; import Alert from 'sentry/components/alert'; import ExternalLink from 'sentry/components/links/externalLink'; import Link from 'sentry/components/links/link'; import {t, tct} from 'sentry/locale'; import space from 'sentry/styles/space'; const NotFound = () => ( {t('Page Not Found')}

{t('The page you are looking for was not found.')}

{t('You may wish to try the following:')}

{tct('Not sure what to do? [link:Return to the dashboard]', { link: , })}

); const NotFoundAlert = styled(Alert)` margin: ${space(3)} 0; `; const Heading = styled('h1')` font-size: ${p => p.theme.fontSizeLarge}; line-height: 1.4; margin-bottom: ${space(1)}; `; export default NotFound;