import type { Metadata } from "next"; import { ArrowRight, Check, ContactRound, HeartHandshake, LockKeyhole, ScanLine, ShieldCheck, Smartphone, } from "lucide-react"; import Link from "next/link"; import { ProductDevice } from "~/components/product-device"; import { QuestionsPreview } from "~/components/questions-preview"; import { Button } from "~/components/ui/button"; import { productClaims, productRelease } from "~/content/product"; import { ACCESS_INVITE_MAILTO } from "~/lib/access"; export const metadata: Metadata = { title: "Carry the context when care gets complicated", description: "Medscribe is a private, patient-controlled companion that keeps visits, medications, and critical context together.", }; const visitMoments = [ { number: "01", eyebrow: "Visits stay findable", title: "The visit has a place to land.", body: "Keep the recording, transcript, and reviewed summary together instead of reconstructing the appointment from memory.", image: "/screenshots/product-bezel-2026-08-23-complete/visits-natural.webp", darkImage: "/screenshots/product-bezel-2026-08-23-complete/visits-natural-dark.webp", alt: "Medscribe Visits screen in a natural titanium iPhone product bezel", }, { number: "02", eyebrow: "Words stay checkable", title: "Go back to what was actually said.", body: "Search the transcript and compare it with the generated summary before relying on it later.", image: "/screenshots/product-bezel-2026-08-23-complete/transcript-populated-black.webp", darkImage: "/screenshots/product-bezel-2026-08-23-complete/transcript-populated-black-dark.webp", alt: "Medscribe visit transcript in a black titanium iPhone product bezel", }, { number: "03", eyebrow: "The next step stays visible", title: "Review the useful part. Keep your judgment.", body: "Bring medications, follow-ups, diagnoses, and instructions into view, then check the details that matter.", image: "/screenshots/product-bezel-2026-08-23-complete/summary-reviewed-natural.webp", darkImage: "/screenshots/product-bezel-2026-08-23-complete/summary-reviewed-natural-dark.webp", alt: "Medscribe appointment summary in a natural titanium iPhone product bezel", }, ] as const; const proofStats = [ { value: "One place", label: "for visits, medications, and important context", }, { value: "At a glance", label: "for daily routines and reminders", }, { value: "Your choice", label: "when and what to share", }, ] as const; const privacyPrinciples = [ { icon: Smartphone, title: "Built around the person", body: productClaims.localRecord.publicCopy, }, { icon: LockKeyhole, title: "Private by design", body: productClaims.localAi.publicCopy, }, { icon: ShieldCheck, title: "Care decisions stay human", body: productClaims.medicationFacts.publicCopy, }, ] as const; const accessFit = [ "Managing several medications or repeated visits", "Coordinating care with a family caregiver", "Keeping a clear record for the next conversation", ] as const; export default function HomePage() { return ( <>
{productRelease.stage} {productRelease.platforms}

Carry the context.

Visits, medications, and the critical details between them—kept together wherever care takes you.

Illustrative profile · Medscribe interface

The connected picture

Care happens in fragments. Your context shouldn't.

One instruction lives in a portal. A medication label sits in a cabinet. The latest change lives in someone's memory. Medscribe is the patient-held thread between those moments.

After the visit

Turn what happened into something you can check.

Bring the important details from a visit into one reviewable record. You decide what is useful and what belongs in the picture you carry forward.

The safety loop:{" "} review generated information before acting. Medscribe does not diagnose, prescribe, or replace clinical verification.

    {visitMoments.map((moment, index) => (
  1. {moment.number}

    {moment.eyebrow}

    {moment.title}

    {moment.body}

  2. ))}

Between visits

Keep the medication picture current.

The list, the label, the schedule, and the latest confirmation belong in the same view—not scattered across paper and memory.

{[ { title: "Keep schedules easy to understand", body: "See timing, reminders, and refill details together in one calm view.", }, { title: "See the important details", body: productClaims.medicationFacts.publicCopy, }, { title: "Make review simple", body: "Keep the details readable so you can check them with a clinician or pharmacist.", }, ].map((item) => (
))}

Questions for the doctor

Ask now. Save what belongs in the room.

Ask about a visit or medication. When the answer needs a care professional's judgment, Medscribe can suggest saving the question and who may be helpful to ask.

Keep a calm, ready list for your next appointment instead of relying on memory when the conversation begins.

At the handoff

Bring the picture when care gets complicated.

Know Me gathers selected medications, allergies, conditions, baseline, and contacts into one readable snapshot that is easy to review together.

    {[ ["1", "You review", "Choose the context that helps"], ["2", "You share", "Send it to someone you trust"], ["3", "Stay aligned", "Keep the same picture in view"], ].map(([number, title, body]) => (
  1. {number}

    {title}

    {body}

  2. ))}

Privacy that feels personal

Your health story stays centered on you.

Medscribe keeps the experience focused on your choices: what you keep, what you review, and what you share with people you trust.

{proofStats.map((stat) => (
{stat.label}
{stat.value}
))}
{privacyPrinciples.map((principle) => { const Icon = principle.icon; return (
); })}

Made for people who carry a lot

Carry the record that helps you move forward.

Bring visits, medication routines, and trusted caregivers into one clearer picture—without losing your place at the center.

Start with your platform and whether you are interested as a patient, caregiver, or both. Please do not email health details.

); }