104 lines
2.6 KiB
TypeScript
104 lines
2.6 KiB
TypeScript
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
|
import { Toaster } from "sonner";
|
|
import Login from "./pages/Login";
|
|
import Dashboard from "./pages/Dashboard";
|
|
import Tenants from "./pages/Tenants";
|
|
import CreateTenantWizard from "./pages/CreateTenantWizard";
|
|
import TenantDetails from "./pages/TenantDetails";
|
|
import Users from "./pages/Users";
|
|
import NotFound from "./pages/NotFound";
|
|
import ProtectedRoute from "./pages/ProtectedRoute";
|
|
import Roles from "./pages/Roles";
|
|
import Modules from "./pages/Modules";
|
|
import AuditLogs from "./pages/AuditLogs";
|
|
import ForgotPassword from "./pages/ForgotPassword";
|
|
import ResetPassword from "./pages/ResetPassword";
|
|
|
|
function App() {
|
|
return (
|
|
<BrowserRouter>
|
|
<Toaster position="top-right" richColors />
|
|
<Routes>
|
|
<Route path="/" element={<Login />} />
|
|
<Route path="/forgot-password" element={<ForgotPassword />} />
|
|
<Route path="/reset-password" element={<ResetPassword />} />
|
|
<Route
|
|
path="/dashboard"
|
|
element={
|
|
<ProtectedRoute>
|
|
<Dashboard />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/tenants"
|
|
element={
|
|
<ProtectedRoute>
|
|
<Tenants />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/tenants/create-wizard"
|
|
element={
|
|
<ProtectedRoute>
|
|
<CreateTenantWizard />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/tenants/:id"
|
|
element={
|
|
<ProtectedRoute>
|
|
<TenantDetails />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/users"
|
|
element={
|
|
<ProtectedRoute>
|
|
<Users />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/roles"
|
|
element={
|
|
<ProtectedRoute>
|
|
<Roles />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/modules"
|
|
element={
|
|
<ProtectedRoute>
|
|
<Modules />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
<Route
|
|
path="/audit-logs"
|
|
element={
|
|
<ProtectedRoute>
|
|
<AuditLogs />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
{/* Catch-all route for 404 */}
|
|
<Route
|
|
path="*"
|
|
element={
|
|
<ProtectedRoute>
|
|
<NotFound />
|
|
</ProtectedRoute>
|
|
}
|
|
/>
|
|
</Routes>
|
|
</BrowserRouter>
|
|
);
|
|
}
|
|
|
|
export default App;
|