Dashboard adoptation

This commit is contained in:
Sidharth Prabhu
2026-04-20 21:08:17 +05:30
parent 10d250686b
commit ee98c1c45e
10 changed files with 418 additions and 15 deletions

View File

@@ -25,6 +25,7 @@ import Reports from './pages/Reports.tsx';
import Feedback from './pages/Feedback.tsx';
import Ritz from './pages/Ritz.tsx';
import RitzCirculation from './pages/RitzCirculation.tsx';
import ManageWallets from './pages/ManageWallets.tsx';
const ProtectedRoute = ({ children }: { children: React.ReactNode }) => {
const isLoggedIn = sessionStorage.getItem('isLoggedIn') === 'true';
@@ -94,6 +95,7 @@ function App() {
<Route path="feedback" element={<Feedback />} />
<Route path="ritz/overview" element={<Ritz />} />
<Route path="ritz/circulation" element={<RitzCirculation />} />
<Route path="ritz/wallets" element={<ManageWallets />} />
{/* Stores */}
<Route path="stores/terminals" element={<Terminals />} />