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 ? (
{/* eslint-disable-next-line @next/next/no-img-element */} Medscribe
Executive summary ยท Northwell Health
) : 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 ( ); }