Ajout des fichiers de l'application

This commit is contained in:
Rampeur
2025-08-07 08:12:11 +02:00
parent 16fc6b69a6
commit 8da4b7cb28
193 changed files with 372196 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
const NotFound = () => {
return (
<div className="not-found-page">
<div className="container page">
<p className="error-message">This page could not be found.</p>
</div>
</div>
);
};
export default NotFound;