diff --git a/src/components/applications-launcher-page.tsx b/src/components/applications-launcher-page.tsx index 58e2fa7cb..239489f16 100644 --- a/src/components/applications-launcher-page.tsx +++ b/src/components/applications-launcher-page.tsx @@ -99,8 +99,7 @@ const launcherApps: LauncherApp[] = toolCatalogRecords.map((record) => ({ const toolsLauncherCopy = { heading: "Tools", - description: - "Open the clinical tools and connected workflows you use for assessment, prescribing, documents, and saved work.", + description: "Assessment, prescribing, documents, and saved work.", allSectionLabel: "All tools", countNoun: "tools", emptyTitle: "No tools match", @@ -733,17 +732,15 @@ export function ApplicationsLauncherWorkspace({ aria-labelledby="tools-home-title" className={cn( "mx-auto w-full max-w-[90rem] overflow-x-hidden px-4 pb-8 text-[color:var(--text)] sm:px-6 lg:px-8", - // The composer sits in the hero at every width, so phones only need a - // small safe-area cushion rather than bottom-dock clearance. - "pb-[calc(2rem+env(safe-area-inset-bottom))] sm:pb-8", - "pt-7 sm:pt-10 lg:pt-14", + "pb-[calc(12rem+env(safe-area-inset-bottom))] sm:pb-8", + "pt-5 sm:pt-8 lg:pt-10", className, )} >
-
+
({ title: prompt.label, - description: prompt.description, + description: "Prescribing-focused search.", icon: prompt.icon, onClick: () => onSuggestedSearch(prompt.label), disabled: loading, diff --git a/src/components/forms/forms-home-page.tsx b/src/components/forms/forms-home-page.tsx index 03a6495c1..a5a6be5e7 100644 --- a/src/components/forms/forms-home-page.tsx +++ b/src/components/forms/forms-home-page.tsx @@ -30,19 +30,19 @@ import { countVerifiedRegistryRecords, useRegistryRecords } from "@/lib/use-regi const taskCards: ModeHomeAction[] = [ { title: "Find a form", - description: "Search by number, pathway, clock, or keyword.", + description: "Number, pathway, clock, keyword.", icon: Search, href: appModeHomeHref("forms", { focus: true }), }, { title: "Readiness checks", - description: "Review maker, clock, copies, and source.", + description: "Maker, clock, copies, source.", icon: ClipboardCheck, href: `/forms/${defaultFormSlug() ?? ""}`, }, { title: "Browse pathways", - description: "Before, current, parallel, and after forms.", + description: "Before, current, parallel, after.", icon: Route, href: appModeHomeHref("forms", { query: "forms pathway before current parallel after", @@ -113,13 +113,13 @@ export function FormsHomePage() { - -
+
{title}

@@ -219,7 +219,7 @@ export function ModeHomeTemplate({

@@ -235,7 +235,7 @@ export function ModeHomeTemplate({ {actions?.length ? (
{actions.map((action, index) => { const ActionIcon = action.icon; @@ -245,10 +245,10 @@ export function ModeHomeTemplate({