diff --git a/public/screenshots/product-bezel-2026-08-24-clipped/ask-black-dark.webp b/public/screenshots/product-bezel-2026-08-24-clipped/ask-black-dark.webp deleted file mode 100644 index ee49dfe..0000000 Binary files a/public/screenshots/product-bezel-2026-08-24-clipped/ask-black-dark.webp and /dev/null differ diff --git a/public/screenshots/product-bezel-2026-08-24-clipped/ask-black.webp b/public/screenshots/product-bezel-2026-08-24-clipped/ask-black.webp deleted file mode 100644 index 4ebd572..0000000 Binary files a/public/screenshots/product-bezel-2026-08-24-clipped/ask-black.webp and /dev/null differ diff --git a/public/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black-dark.webp b/public/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black-dark.webp new file mode 100644 index 0000000..f10acd3 Binary files /dev/null and b/public/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black-dark.webp differ diff --git a/public/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black.webp b/public/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black.webp new file mode 100644 index 0000000..79d7c60 Binary files /dev/null and b/public/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black.webp differ diff --git a/public/screenshots/product-bezel-2026-08-24-clipped/questions-black-dark.webp b/public/screenshots/product-bezel-2026-08-24-clipped/questions-black-dark.webp new file mode 100644 index 0000000..3a47d4d Binary files /dev/null and b/public/screenshots/product-bezel-2026-08-24-clipped/questions-black-dark.webp differ diff --git a/public/screenshots/product-bezel-2026-08-24-clipped/questions-black.webp b/public/screenshots/product-bezel-2026-08-24-clipped/questions-black.webp new file mode 100644 index 0000000..d830d70 Binary files /dev/null and b/public/screenshots/product-bezel-2026-08-24-clipped/questions-black.webp differ diff --git a/src/app/(marketing)/how-it-works/page.tsx b/src/app/(marketing)/how-it-works/page.tsx index 67bbbd5..daa8ef4 100644 --- a/src/app/(marketing)/how-it-works/page.tsx +++ b/src/app/(marketing)/how-it-works/page.tsx @@ -11,7 +11,6 @@ import { import Link from "next/link"; import { PhoneMockup } from "~/components/phone-mockup"; -import { QuestionsPreview } from "~/components/questions-preview"; import { SectionLabel } from "~/components/section-label"; import { Badge } from "~/components/ui/badge"; import { Button } from "~/components/ui/button"; @@ -190,7 +189,17 @@ export default function HowItWorksPage() { important question does not disappear in the moment.

- +
+ +

+ Illustrative profile ยท Medscribe interface +

+
diff --git a/src/app/(marketing)/page.tsx b/src/app/(marketing)/page.tsx index 1a3162a..4d4342a 100644 --- a/src/app/(marketing)/page.tsx +++ b/src/app/(marketing)/page.tsx @@ -12,7 +12,6 @@ import { 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"; @@ -331,17 +330,25 @@ export default function HomePage() {

-
+
- +
+ +
diff --git a/src/components/feature-showcase.tsx b/src/components/feature-showcase.tsx index ea23c1e..0065b32 100644 --- a/src/components/feature-showcase.tsx +++ b/src/components/feature-showcase.tsx @@ -61,9 +61,10 @@ const features = [ "Keep a ready list for the next appointment", "See whether a doctor, prescriber, or pharmacist may be helpful", ], - image: "/screenshots/product-bezel-2026-08-24-clipped/ask-black.webp", + image: + "/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black.webp", darkImage: - "/screenshots/product-bezel-2026-08-24-clipped/ask-black-dark.webp", + "/screenshots/product-bezel-2026-08-24-clipped/ask-questions-black-dark.webp", alt: "Illustrative Medscribe answer with medication context and a safety boundary", }, { diff --git a/src/components/questions-preview.tsx b/src/components/questions-preview.tsx deleted file mode 100644 index 16c5b99..0000000 --- a/src/components/questions-preview.tsx +++ /dev/null @@ -1,76 +0,0 @@ -import { ArrowUpRight, Check, MessageCircleQuestion, Plus } from "lucide-react"; - -import { cn } from "~/lib/utils"; - -const questions = [ - { - question: "Could this change be related to my medication?", - recipient: "Prescriber", - }, - { - question: "What should I expect at the follow-up?", - recipient: "Care team", - }, - { - question: "Is this still the right time to take it?", - recipient: "Pharmacist", - }, -] as const; - -export function QuestionsPreview({ className }: { className?: string }) { - return ( -
-
-
-

- Questions -

-

- Ready for the conversation -

-
- - -
- -
- {questions.map((item, index) => ( -
0 && "border-border-soft/55 border-t", - )} - > -
-

- {item.question} -

-

- Ask your {item.recipient.toLowerCase()} -

-
- - -
- ))} -
- -
- - - Save a question the moment it comes to you. -
-
- ); -}