chore: update

This commit is contained in:
2026-03-30 20:02:39 +02:00
parent 32e129da31
commit 25cd6429f2
32 changed files with 1024 additions and 540 deletions
+3
View File
@@ -1,5 +1,6 @@
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
import { CartProvider } from "./context/CartContext";
import { ThemeProvider } from "./context/ThemeContext";
import "./App.css";
// Pages principales
@@ -21,6 +22,7 @@ import ChangePasswordPage from "./pages/ChangePassword/ChangePassword";
function App() {
return (
<ThemeProvider>
<Router>
<Routes>
{/* Routes Login - SANS CartProvider */}
@@ -87,6 +89,7 @@ function App() {
/>
</Routes>
</Router>
</ThemeProvider>
);
}