NotFound.jsx 509 Bytes
import React from 'react'
import { Link } from 'react-router-dom'

const NotFound = () => {
  return (
    <div className="not-found">
      <div className="container">
        <div className="not-found-content">
          <h1>404</h1>
          <h2>Page Not Found</h2>
          <p>The page you are looking for doesn't exist or has been moved.</p>
          <Link to="/" className="home-button">
            Go Back Home
          </Link>
        </div>
      </div>
    </div>
  )
}

export default NotFound