forked from FrontMatter/web-documentation-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.tsx
27 lines (23 loc) · 952 Bytes
/
404.tsx
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
import * as React from 'react';
import { Description, OtherMeta, Title } from '../components/Meta';
import { Layout } from '../components/Page';
import Image from 'next/image';
export interface INotFoundProps { }
const NotFound: React.FunctionComponent<INotFoundProps> = (props: React.PropsWithChildren<INotFoundProps>) => {
return (
<>
<Title value={`Page not found`} />
<Description value={`It seems you ended up on a page that we didn't write yet.`} />
<OtherMeta image={`/assets/frontmatter-social.png`} />
<Layout>
<div className="h-full max-w-7xl mx-auto py-12 sm:py-16 px-4 sm:px-6 lg:px-8 xl:px-0 flex items-center">
<Image width={1216} height={825} src={`/assets/404.png`} alt={`Page not found`} />
<span className="sr-only">
Page not found - please navigate back to the homepage
</span>
</div>
</Layout>
</>
);
};
export default NotFound;