github.com/Jeffail/benthos/v3@v3.65.0/website/src/theme/NotFound/index.js (about)

     1  /**
     2   * Copyright (c) 2017-present, Facebook, Inc.
     3   *
     4   * This source code is licensed under the MIT license found in the
     5   * LICENSE file in the root directory of this source tree.
     6   */
     7  
     8  import React from 'react';
     9  import Layout from '@theme/Layout';
    10  import classnames from 'classnames';
    11  
    12  import styles from './styles.module.css';
    13  
    14  function NotFound() {
    15    return (
    16      <Layout title="Page Not Found">
    17        <div className="container margin-vert--xl">
    18          <div className="row">
    19            <div className={classnames("col col--6 col--offset-3", styles.notFoundContainer)}>
    20              <img src="/img/Blobsherlock.svg" className={classnames("margin-bottom--lg", styles.notFoundBlob)}/>
    21              <h1 className="hero__title">Woops! Page Not Found</h1>
    22              <p>The documentation site has recently moved, chances are that the page you're looking for is <a href="/docs/about">in the new docs section</a>.</p>
    23            </div>
    24          </div>
    25        </div>
    26      </Layout>
    27    );
    28  }
    29  
    30  export default NotFound;