import Image from "next/image"; import { HeartPulse, Layers, Mic, MessageSquare, ScanLine, ShieldCheck, } from "lucide-react"; /** * Pharmacy-specific print summary (CVS-targeted, reusable for other pharmacies). * Two designed pages, built for the product rather than mirroring the Northwell * layout: * Page 1 - what Medscribe can do (capabilities, patient-facing power). * Page 2 - every capability pays off twice (patient value -> CVS value). * Reuses the `northwell-print-*` sheet/label classes from globals.css only as * the page frame; the interior is its own design. */ function PrintPage({ page, children, }: Readonly<{ page: number; children: React.ReactNode }>) { return (
{/* eslint-disable-next-line @next/next/no-img-element */} {page === 1 ? (
{/* eslint-disable-next-line @next/next/no-img-element */} Medscribe
Executive summary ยท CVS Health
) : null}
{children}
); } const capabilities = [ { icon: Mic, title: "Understand a visit", body: "Type, paste, snap the after-visit summary, or record the conversation with consent, then review the useful details together.", }, { icon: ScanLine, title: "Read a pill bottle", body: "Point the camera at a prescription label and the drug, dose, and schedule land in the record automatically.", }, { icon: MessageSquare, title: "Answer the hard questions", body: "Bring medication questions into the same view as the patient's list, with important decisions left to the pharmacist or care team.", }, { icon: Layers, title: "Hold the whole picture", body: "Medications, allergies, conditions, baseline, and visit history across every provider, in one place the patient owns.", }, { icon: HeartPulse, title: "Be ready for an emergency", body: "A patient-controlled Know Me card puts the time-critical facts one tap away for a caregiver or an ER.", }, { icon: ShieldCheck, title: "Share with intention", body: "The patient chooses what to share with a trusted caregiver and when that handoff happens.", }, ] as const; const payoffs = [ { patientTitle: "One picture, everywhere they are treated", patient: "Nothing falls through the cracks between a specialist, an urgent care, and the pharmacy.", cvsTitle: "One central pharmacy", cvs: "Refills route back to CVS and scattered scripts consolidate, instead of leaking to Amazon, Cost Plus, or mail order. Share of scripts, won.", }, { patientTitle: "Medications that fit their day", patient: "Reminders and refill nudges that actually help, so they stay on their medications.", cvsTitle: "Star Ratings", cvs: "Diabetes, hypertension, and statin adherence are triple-weighted in Part D Star Ratings: Quality Bonus Payments and retention for Aetna and SilverScript.", }, { patientTitle: "Fewer dangerous surprises", patient: "Interactions and duplicate prescriptions caught across every prescriber, not one pharmacy's slice.", cvsTitle: "Lower cost of care", cvs: "Fewer adverse events and ER visits: direct medical spend saved for the members shared with Caremark and Aetna.", }, { patientTitle: "Ready at the counter", patient: "They arrive with a clean list and their routine questions already answered.", cvsTitle: "Pharmacist leverage", cvs: "Less low-value counter volume, more time for the billable MTM and CMR work pharmacists already do.", }, { patientTitle: "A tool that is theirs", patient: "An advocate they control, centered on their choices rather than a sales pitch.", cvsTitle: "Engagement without the liability", cvs: "A CVS-branded habit patients can understand, with a clear privacy posture and deliberate patient control.", }, ] as const; export function CvsPrintSummary() { return ( ); }