From 7938298c4dcf3d6e3624806faa42619da3313781 Mon Sep 17 00:00:00 2001 From: Tiago Brito <69848652+britotiago03@users.noreply.github.com> Date: Fri, 10 May 2024 05:14:29 +0200 Subject: [PATCH] Implemented NotFound.js --- frontend/src/components/NotFound.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 frontend/src/components/NotFound.js diff --git a/frontend/src/components/NotFound.js b/frontend/src/components/NotFound.js new file mode 100644 index 0000000..c926831 --- /dev/null +++ b/frontend/src/components/NotFound.js @@ -0,0 +1,14 @@ +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; -- GitLab