|
@@ -4,6 +4,7 @@ import * as Sentry from '@sentry/react';
|
|
|
|
|
|
import NotFound from 'sentry/components/errors/notFound';
|
|
|
import Footer from 'sentry/components/footer';
|
|
|
+import * as Layout from 'sentry/components/layouts/thirds';
|
|
|
import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
|
|
|
import Sidebar from 'sentry/components/sidebar';
|
|
|
import {t} from 'sentry/locale';
|
|
@@ -36,13 +37,9 @@ function RouteNotFound({router, location}: Props) {
|
|
|
<SentryDocumentTitle title={t('Page Not Found')}>
|
|
|
<div className="app">
|
|
|
<Sidebar location={location} />
|
|
|
- <div className="container">
|
|
|
- <div className="content">
|
|
|
- <section className="body">
|
|
|
- <NotFound />
|
|
|
- </section>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <Layout.Page withPadding>
|
|
|
+ <NotFound />
|
|
|
+ </Layout.Page>
|
|
|
<Footer />
|
|
|
</div>
|
|
|
</SentryDocumentTitle>
|