feat(patient-connection-page demo added)

This commit is contained in:
2025-12-18 00:38:09 +05:30
parent 1fbe30242c
commit 3ad5bd633d
9 changed files with 977 additions and 23 deletions

View File

@@ -12,6 +12,7 @@ import Dashboard from "./pages/dashboard";
import LoadingScreen from "./components/ui/LoadingScreen";
const AuthPage = lazy(() => import("./pages/auth-page"));
const PatientConnectionPage = lazy(() => import("./pages/patient-connection-page"));
const AppointmentsPage = lazy(() => import("./pages/appointments-page"));
const PatientsPage = lazy(() => import("./pages/patients-page"));
const SettingsPage = lazy(() => import("./pages/settings-page"));
@@ -34,6 +35,7 @@ function Router() {
<ProtectedRoute path="/" component={() => <Redirect to="/insurance-status" />} />
<ProtectedRoute path="/dashboard" component={() => <Dashboard />} />
<ProtectedRoute path="/patient-connection" component={() => <PatientConnectionPage />} />
<ProtectedRoute
path="/appointments"
component={() => <AppointmentsPage />}