File size: 1,076 Bytes
1e92f2d |
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 40 |
import config from '@automattic/calypso-config';
import clsx from 'clsx';
import EmptyContent from 'calypso/components/empty-content';
import Head from 'calypso/components/head';
import { chunkCssLinks } from './utils';
function NotFound( { entrypoint } ) {
const theme = config( 'theme' );
return (
<html lang="en">
<Head>{ chunkCssLinks( entrypoint ) }</Head>
<body
className={ clsx( {
[ 'theme-' + theme ]: theme,
} ) }
>
{ /* eslint-disable wpcalypso/jsx-classname-namespace*/ }
<div id="wpcom" className="wpcom-site">
<div className="wp has-no-sidebar">
<div className="layout__content" id="content">
<div className="layout__primary" id="primary">
<EmptyContent
title="Page not found."
line="Sorry, the page you were looking for doesn't exist or has been moved."
action="Return Home"
actionURL="/"
/>
</div>
</div>
</div>
</div>
{ /* eslint-enable wpcalypso/jsx-classname-namespace*/ }
</body>
</html>
);
}
export default NotFound;
|