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 ? (
) : 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 (
What Medscribe is
It captures, understands, and carries the patient's whole
medical picture.
Medscribe organizes visits, reads pill bottles, supports
medication questions, and keeps one ready-to-share record across
every provider.
{[
"Private by design",
"Clear by design",
"Patient-controlled",
"iOS and Android",
].map((badge) => (
{badge}
))}
What it can do
The daily tools patients need, connected in one place
{capabilities.map(({ icon: Icon, title, body }) => (
))}
{[
[
"Private by design",
"The experience keeps the patient's choices at the center of every review and handoff.",
],
[
"Clear medication context",
"Medication questions stay connected to the list the patient already carries and the professionals they trust.",
],
[
"Owned by the patient",
"One record that spans every provider, that the patient controls, carries, and decides how to share.",
],
].map(([title, body]) => (
))}
Who it helps
Every capability pays off twice
The features that make Medscribe genuinely useful to the patient are
the same ones that move the numbers CVS is measured on.
Cross-provider by design; one central pharmacy in practice.
{payoffs.map((row) => (
{row.patientTitle}
{row.patient}
))}
It sits beside the CVS stack, not on top of it.{" "}
Dispensing, Caremark benefits, and the CVS app keep doing their jobs.
Medscribe is the patient-owned layer that feeds value back in with
consent. A partnership unlocks co-branding, refill routing, and
adherence reporting against Star and EQuIPP measures.
The ask
A short conversation about a record that moves adherence and keeps
refills at CVS.
Designed for iOS and Android. A partnership can connect the
patient experience with CVS's adherence and pharmacy goals.
Who is behind it
Sean O'Connor
A Bucknell computer science and engineering graduate who built
Medscribe after watching his family lose the full picture of his
grandfather's care.
);
}