Skip to content
Snippets Groups Projects
Commit 7938298c authored by Tiago Brito's avatar Tiago Brito
Browse files

Implemented NotFound.js

parent 153a13cd
No related branches found
No related tags found
No related merge requests found
import React from 'react';
import '../css/NotFound.css'; // Make sure the path matches your project structure
function NotFound() {
return (
<div className="not-found-container">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
</div>
);
}
export default NotFound;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment