import Image from "next/image";
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 people = [
[
"The student on their own",
"Managing prescriptions and appointments for the first time, away from the parent who used to track it all.",
],
[
"The newly diagnosed",
"A new routine, new instructions, and follow-ups that are a blur by the next visit.",
],
[
"The long-distance caregiver",
"An adult child coordinating a parent's medications with siblings who cover different days.",
],
[
"The emergency",
"An older patient at an out-of-network ER, where no one has met them or knows which medications cannot be delayed.",
],
] as const;
const productPillars = [
[
"Capture visits",
"Type or paste notes, import a portal screenshot, attach a document, or use consent-gated recording, then review the important details.",
],
[
"Keep medications current",
"Pill-bottle label recognition, reminders, refill tracking, dose history, and questions connected to the patient's list.",
],
[
"Be ready to hand off",
"A patient-controlled Know Me record keeps critical context ready for a caregiver or care professional.",
],
] as const;
const northwellFit = [
[
"An experience patients can trust",
"Visit summaries, medication routines, and important questions stay clear and reviewable for patients, privacy teams, and clinicians.",
],
[
"A Northwell story worth telling",
"Northwell can lead with a concrete patient benefit: one private, emergency-ready picture that travels across systems. The experience could carry Northwell's brand without pretending to replace MyChart.",
],
[
"An everyday touchstone",
"Reminders, refills, dose tracking, questions, and record updates create useful reasons to return between appointments. Each moment can point the patient back to the Northwell care team.",
],
] as const;
const recordContents = [
"Active medications, doses, schedules, and refill status",
"Allergies, conditions, baseline, and the context that changes a handoff",
"Visit summaries, follow-up instructions, and questions for the next visit",
"Emergency contacts and a concise, patient-controlled Know Me record",
] as const;
export function NorthwellPrintSummary() {
return (
The patient-owned record
Be known when care gets complicated
Medscribe keeps a patient's medications, visits, baseline,
and critical care context current between appointments, then makes
that picture ready for a caregiver, a new doctor, or an ER.
{[
"Private by design",
"Emergency-ready",
"Patient-controlled",
"iOS and Android",
].map((badge) => (
{badge}
))}
The job
One trustworthy picture that survives fragmented care, missed
appointments, secondhand updates, and emergency handoffs.
{[
[
"Keep it current",
"Everyday visit and medication workflows maintain the record.",
],
[
"Make it obvious",
"Time-critical medications and baseline context rise to the top.",
],
[
"Keep it controlled",
"The patient decides what is shared, when, and with whom.",
],
].map(([title, body]) => (
))}
One living picture
Everyday use keeps the record ready for the moments when a clear
handoff matters most.
{recordContents.map((item) => (
-
{item}
))}
What it is
A medical record the patient owns and carries
The daily tools work together as one clear, emergency-ready
experience.
{productPillars.map(([title, body], index) => (
0{index + 1}
{title}
{body}
))}
Who it is for
Anyone holding care together
{people.map(([title, body]) => (
))}
What makes it different
Every alternative owns a slice. Medscribe owns the whole job.
Institutional records reflect their own care settings. Patients
often move among urgent care, community specialists, pharmacies,
and family caregivers.
Medscribe connects visit memory, medication routines, and the
handoff across those settings while keeping the patient's
choices at the center.
Clear medication context
Medication details, routines, and questions stay connected in one
readable view, with clinical decisions left to the care team.
Patient-controlled sharing
The patient reviews the context first and decides when a trusted
caregiver or care professional should see it.
The Northwell opportunity
A trusted touchstone between visits
Medscribe gives Northwell a useful presence in the part of care no
portal owns: the ordinary days when patients remember, refill,
question, coordinate, and try to follow the plan.
{northwellFit.map(([title, body], index) => (
0{index + 1}
{title}
{body}
))}
The touchstone
MyChart organizes the appointment. Medscribe helps the patient live
the plan.
A reminder, a refill, a quick question, or an update to the record
becomes a small moment of continuity. Presented as part of the
Northwell experience, those moments can reinforce the care plan and
point the patient back to the team that knows them.
How it fits the stack
Epic remains the record of care
Northwell's clinical workflows, orders, results, messages,
and institutional history stay where they belong. Medscribe is
not another EHR and does not need to displace MyChart.
The patient carries personal context
Non-Epic visits, medication changes, caregiver knowledge, and
emergency context stay with the patient. Consent governs when
that picture is shared back into a Northwell interaction.
The marketing value
A patient promise people can understand
Private by design. One current picture. Ready for the caregiver,
the new doctor, or the ER. That is a human story people can
understand, and it gives Northwell a visible way to stand for
continuity beyond its own walls.
Built and live
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. Medscribe is designed for iOS and
Android.
);
}