Mise à jour

This commit is contained in:
Rampeur
2025-08-11 01:14:50 +02:00
parent e1e703c2d8
commit 917b90a26d
43 changed files with 1415 additions and 1241 deletions
+9 -7
View File
@@ -1,11 +1,13 @@
import { Container, Button } from "react-bootstrap";
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>
);
return (
<section className="not-found-page">
<Container className="page">
<p className="error-message"> Cette page n&apos;existe pas.</p>
</Container>
</section>
);
};
export default NotFound;