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.
17 lines
349 B
17 lines
349 B
import Navbar from "../components/Navbar";
|
|
|
|
function NotFound() {
|
|
return (
|
|
<div>
|
|
<Navbar />
|
|
<br />
|
|
<h1 className="ms-2">Error 404: Page Not Found</h1>
|
|
<br />
|
|
<div className="ms-2">
|
|
Use the navbar at the top of the screen to go back to the website.
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default NotFound;
|