feat: add Chart section, colorize sidebar icons, rename nav items, patient action buttons, program bridge

This commit is contained in:
Gitead
2026-04-28 21:38:35 -04:00
parent 5d0d92d524
commit 371dea54f7
10 changed files with 1913 additions and 45 deletions

View File

@@ -28,6 +28,7 @@ const DatabaseManagementPage = lazy(
const ReportsPage = lazy(() => import("./pages/reports-page"));
const CloudStoragePage = lazy(() => import("./pages/cloud-storage-page"));
const JobMonitorPage = lazy(() => import("./pages/job-monitor-page"));
const ChartPage = lazy(() => import("./pages/chart-page"));
const NotFound = lazy(() => import("./pages/not-found"));
function Router() {
@@ -42,6 +43,8 @@ function Router() {
component={() => <AppointmentsPage />}
/>
<ProtectedRoute path="/patients" component={() => <PatientsPage />} />
<ProtectedRoute path="/chart/:section" component={() => <ChartPage />} />
<ProtectedRoute path="/chart" component={() => <ChartPage />} />
<ProtectedRoute path="/settings" component={() => <SettingsPage />} adminOnly />
<ProtectedRoute path="/claims" component={() => <ClaimsPage />} />
<ProtectedRoute