add register and see panel
Deploy Nexus Portal to HestiaCP (FTP) / build-and-deploy (push) Successful in 30s

This commit is contained in:
2026-06-17 17:39:30 +02:00
parent 0863b0a161
commit 9acb9c6801
7 changed files with 708 additions and 26 deletions
+4 -2
View File
@@ -17,7 +17,8 @@ import Home from './pages/public/Home';
// Import des Pages Privées (Espace Client)
import Dashboard from './pages/app/Dashboard';
import Store from './pages/app/Store';
//import Services from './pages/app/Services';
import Checkout from './pages/app/Checkout';
import Services from './pages/app/Services';
export default function App() {
return (
@@ -44,7 +45,8 @@ export default function App() {
<Route element={<AppLayout />}>
<Route path="/dashboard" element={<Dashboard />} />
<Route path="/store" element={<Store />} />
{/* <Route path="/services" element={<Services />} /> */}
<Route path="/checkout/:productId" element={<Checkout />} />
<Route path="/services" element={<Services />} />
</Route>
</Route>