next.js/examples/cms-sitecore-xmcloud/src/NotFound.tsx
NotFound.tsx20 lines372 B
import Head from "next/head";

/**
 * Rendered in case if we have 404 error
 */
const NotFound = (): JSX.Element => (
  <>
    <Head>
      <title>404: NotFound</title>
    </Head>
    <div style={{ padding: 10 }}>
      <h1>Page not found</h1>
      <p>This page does not exist.</p>
      <a href="/">Go to the Home page</a>
    </div>
  </>
);

export default NotFound;
Quest for Codev2.0.0
/
SIGN IN