Page Not Found
Page Not Found ~10 mins - nextjs

Create Page Not Found page

    import React from "react";

const NotFound = () => {
return (
<div>
Page Not Found
</div>
);
};

export default NotFound;

Test a invalid url

Note: It should display page not found page.