frontend: pharmacy dashboard page

New /pharmacy department home: KPI cards (active prescriptions, expiring
within 7 days from parseable durations, patients on medication) over a
dispensing queue of active prescriptions (oldest first) with search, a
mark-completed action and the existing detail sheet. No create/delete UI —
prescribing stays with clinicians.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Khalid Abdi
2026-06-11 21:03:39 +03:00
parent 84c71de2d4
commit ce2a54cc43
2 changed files with 306 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { PharmacyView } from "@/components/pharmacy/pharmacy-view";
import { SidebarInset } from "@/components/ui/sidebar";
export default function PharmacyPage() {
return (
<SidebarInset className="flex flex-1 flex-col overflow-y-auto">
<PharmacyView />
</SidebarInset>
);
}