var NotFound = function (props) {
  var navigate = props.navigate;

  return (
    <section className="ib-error">
      <pre className="ib-error-ascii" aria-hidden="true">{'  ╔══════════════════════════╗\n  ║  SEGFAULT :: 404         ║\n  ║  this path does not      ║\n  ║  exist on this machine   ║\n  ╚══════════════════════════╝'}</pre>
      <h1 className="ib-error-title">404 · Page not found</h1>
      <p className="ib-error-copy">
        $ cd / && ls — try the{' '}
        <a href="/" onClick={function (e) { e.preventDefault(); navigate('home'); }}>homepage</a>
        {' '}or hit <kbd>cmd+k</kbd> to search.
      </p>
    </section>
  );
};

window.NotFound = NotFound;
