forked from ClickHouse/clickhouse-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NotFound.js
39 lines (39 loc) · 1.43 KB
/
NotFound.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from 'react';
import Layout from '@theme/Layout';
import Translate, {translate} from '@docusaurus/Translate';
import {PageMetadata} from '@docusaurus/theme-common';
export default function NotFound() {
return (
<>
<PageMetadata
title={translate({
id: 'theme.NotFound.title',
message: 'Page Not Found',
})}
/>
<Layout>
<main className="container margin-vert--xl">
<div className="row">
<div className="col col--6 col--offset-3 notfound">
<h1 className="hero__title">
<Translate
id="theme.NotFound.title"
description="The title of the 404 page">
Page Not Found
</Translate>
</h1>
<p>
We could not find what you were looking for. Our docs have recently gone through a major reorganization, so it is possilbe that
the content still exists but the link was changed.
Try the <a href="https://clickhouse.com/docs/intro">docs home page</a> or using the search bar above to find what you are looking for.
</p>
<p>
Please contact us as at <a href="mailto:[email protected]">[email protected]</a> and let us know our link is broken.
</p>
</div>
</div>
</main>
</Layout>
</>
);
}