16 lines
463 B
React
16 lines
463 B
React
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; |