notfound.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import React from 'react';
  2. import BasePage from '@/components/Layout/BasePage';
  3. import Link from 'next/link';
  4. const NotFound = props => (
  5. <div className="abs-center wd-xl">
  6. <div className="text-center mb-4">
  7. <div className="text-lg mb-3">404</div>
  8. <p className="lead m-0">We couldn't find this page.</p>
  9. <p>The page you are looking for does not exists.</p>
  10. </div>
  11. <div className="input-group mb-4">
  12. <input className="form-control" type="text" placeholder="Try with a search" />
  13. <span className="input-group-btn">
  14. <button className="btn btn-secondary" type="button">
  15. <em className="fa fa-search" />
  16. </button>
  17. </span>
  18. </div>
  19. <ul className="list-inline text-center text-sm mb-4">
  20. <li className="list-inline-item">
  21. <Link href="/dashboard/dashboardv1">
  22. <a className="text-muted">Go to App</a>
  23. </Link>
  24. </li>
  25. <li className="text-muted list-inline-item">|</li>
  26. <li className="list-inline-item">
  27. <Link href="/pages/login" as="/login">
  28. <a className="text-muted">Login</a>
  29. </Link>
  30. </li>
  31. <li className="text-muted list-inline-item">|</li>
  32. <li className="list-inline-item">
  33. <Link href="/pages/register" as="/register">
  34. <a className="text-muted">Register</a>
  35. </Link>
  36. </li>
  37. </ul>
  38. <div className="p-3 text-center">
  39. <span className="mr-2">&copy;</span>
  40. <span>2020</span>
  41. <span className="mx-2">-</span>
  42. <span>Angle</span>
  43. <br />
  44. <span>Bootstrap Admin Template</span>
  45. </div>
  46. </div>
  47. );
  48. NotFound.Layout = BasePage;
  49. export default NotFound;