Files
Octopus-React-Wp/frontend/src/components/Pages/NotFound.jsx
T
sebvtl728 dc3c6a566b 404
2025-01-18 17:42:28 +01:00

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;