From dcb81e0b552c91d7f3f081d18341f24f280272a8 Mon Sep 17 00:00:00 2001 From: Melissa Date: Fri, 26 Jun 2026 16:51:49 +0200 Subject: [PATCH] notFound page added --- react-project/src/pages/NotFound.jsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 react-project/src/pages/NotFound.jsx diff --git a/react-project/src/pages/NotFound.jsx b/react-project/src/pages/NotFound.jsx new file mode 100644 index 0000000..e883fb7 --- /dev/null +++ b/react-project/src/pages/NotFound.jsx @@ -0,0 +1,11 @@ +import { Link } from "react-router-dom"; +function NotFound() { + return ( +
+

404 — page introuvable

+ Retour à l'accueil +
+ ); +} + +export default NotFound;