404
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import React from "react";
|
||||
import { Link } from "react-router-dom";
|
||||
import "./NotFound.css"; // Style dédié
|
||||
|
||||
const NotFound = () => {
|
||||
return (
|
||||
<div className="notfound-container">
|
||||
<h1>404</h1>
|
||||
<h2>Oups ! Page introuvable</h2>
|
||||
<p>Il semble que la page que vous recherchez n'existe pas.</p>
|
||||
<Link to="/" className="back-home">Retour à l'accueil</Link>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default NotFound;
|
||||
Reference in New Issue
Block a user