import type { Metadata } from "next"; import { ArrowRight, Camera, Check, FileText, Keyboard, Mic, ShieldAlert, } from "lucide-react"; import Link from "next/link"; import { PhoneMockup } from "~/components/phone-mockup"; import { SectionLabel } from "~/components/section-label"; import { Badge } from "~/components/ui/badge"; import { Button } from "~/components/ui/button"; export const metadata: Metadata = { title: "How it works", description: "See how Medscribe brings visits, medication routines, and important context into one reviewable record.", }; const inputs = [ { icon: Keyboard, title: "Type or paste", body: "Start from notes you already have and keep the original details easy to revisit.", }, { icon: Camera, title: "Import a screenshot", body: "Bring in a portal summary or prescription label, then correct extracted fields.", }, { icon: FileText, title: "Attach a document", body: "Bring a photo or document into a guided review workflow.", }, { icon: Mic, title: "Record with consent", body: "With permission, turn optional visit audio into notes you can review.", }, ] as const; const boundaries = [ "It does not diagnose or recommend treatment.", "It does not calculate, shift, or supply medication timing.", "It does not replace a pharmacist, prescribing team, or emergency service.", "It does not decide what you should share or who should receive it.", ] as const; export default function HowItWorksPage() { return ( <>
A day with Medscribe

One record, built through everyday use.

Medscribe is useful at a handoff only if ordinary moments keep the picture clear. You stay in the review loop from the first note to the next conversation.

Start where the information is

Four ways in. One clear place to review.

{inputs.map((item, index) => { const Icon = item.icon; return (
0{index + 1}

{item.title}

{item.body}

); })}
Review what changed

Keep the visit and the takeaway together.

The visit remains available beside the summary so you can check wording, follow-ups, and the details you want to remember.

Stay oriented: move between the transcript and summary whenever you want the fuller context.

Illustrative profile · Medscribe interface

Illustrative profile · Medscribe interface

Maintain the medication picture

Keep the daily routine easy to read.

See medication details, schedules, reminders, and refill information together without hunting through separate notes.

Medscribe records timing supplied by a label, pharmacist, or prescribing team. It does not calculate or shift medication times.

Prepare the handoff

Know Me is the view. Sharing is a separate choice.

Open Know Me when someone needs a concise picture. Review the details first, then show or share the selected context with a trusted caregiver.

You stay in control of the handoff: what is included, who sees it, and when the conversation happens.

Illustrative profile · Medscribe interface

What Medscribe does not do

A useful boundary is part of the product, not fine print after it.

Privacy should feel understandable.

See how Medscribe keeps you in control of the context you keep, review, and share.

); }