gestion accueil

This commit is contained in:
sebvtl728
2025-02-02 10:22:18 +01:00
parent 57f618a0e4
commit f70d21ae71
6 changed files with 240 additions and 5 deletions
+2
View File
@@ -8,6 +8,7 @@ import SimpleReactLightbox from "simple-react-lightbox";
import NotFound from "./components/Pages/NotFound.jsx";
import GestionArticles from "./components/Pages/GestionArticles";
import EditPost from "./components/EditPost";
import GestionPageAccueil from "./components/Pages/GestionPageAccueil";
// Lazy loading des pages
@@ -55,6 +56,7 @@ function YourApp() {
<Route path="/admin/login" element={<Login />} />
<Route path="/admin/dashboard" element={<Dashboard />} />
<Route path="/admin/gestion-articles" element={<GestionArticles />} />
<Route path="/admin/gestion-page-accueil" element={<GestionPageAccueil />} />
<Route path="*" element={<NotFound />} />
</Routes>
<Footer />