mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-02 19:57:25 +02:00
18 lines
396 B
JavaScript
18 lines
396 B
JavaScript
import React from 'react';
|
|
import Layout from '@theme/Layout';
|
|
|
|
export default class NotFound extends React.Component {
|
|
render() {
|
|
return (
|
|
<Layout>
|
|
<div>404 Page Not Found</div>
|
|
<div>
|
|
<img
|
|
alt="Not found"
|
|
src="https://d2gg9evh47fn9z.cloudfront.net/800px_COLOURBOX3889253.jpg"
|
|
/>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
}
|
|
}
|