Files
temetro/frontend/app/(app)/pharmacy/page.tsx
T
Khalid Abdi ce2a54cc43 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>
2026-06-11 21:03:39 +03:00

11 lines
295 B
TypeScript

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>
);
}