You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
677 B

  1. import React from 'react'
  2. import Link from 'next/link'
  3. const Custom404 = () => {
  4. return (
  5. <div className="error-area">
  6. <div className="d-table">
  7. <div className="d-table-cell">
  8. <div className="container">
  9. <div className="error-content">
  10. <div className="notfound-404">
  11. <h1>Oops!</h1>
  12. </div>
  13. <h3>404 - Page not found</h3>
  14. <p>The page you are looking for might have been removed had its name changed or is temporarily unavailable.</p>
  15. <Link href="/">
  16. <a className="btn btn-primary">Go to Homepage</a>
  17. </Link>
  18. </div>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. )
  24. }
  25. export default Custom404