function NotFound() {
  return (
    <div>
      <h4 style={{ textAlign: "center" }}>
        The page you requested was not found!
      </h4>
    </div>
  );
}

export default NotFound;