From 67a90f73f5951e5b046f668717b47b52f2e9519b Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 20 Apr 2026 02:59:34 +0200 Subject: [PATCH] Landing page: add Bedside calculators bullet + tile to AI Scribe section Adds a 6th feature bullet (with NEW badge) and a 7th icon tile for the pediatric calculators + bedside emergency reference that ships with the Pediatric AI Scribe app. Mentions weight-based dosing, sepsis, status epilepticus, RSI, burns, anaphylaxis pathways. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/pages/LandingPage.jsx | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/frontend/src/pages/LandingPage.jsx b/frontend/src/pages/LandingPage.jsx index a767e8a..432651d 100644 --- a/frontend/src/pages/LandingPage.jsx +++ b/frontend/src/pages/LandingPage.jsx @@ -443,18 +443,25 @@ export default function LandingPage() {

A clinical assistant built for pediatric providers. Voice-to-note documentation, age-specific well visit workflows, developmental milestones, vaccine schedules, - catch-up planners, and automatic ICD-10 billing codes — all in one tool. + catch-up planners, automatic ICD-10 billing codes, and a full pediatric + calculators & bedside emergency reference — all in one tool.

{[ - '🩺 Well visit planner from newborn through adolescence', - '📋 Developmental milestone tracking across 4 domains', - '💉 Full AAP/ACIP vaccine schedule with catch-up planner', - '🎙 AI scribe — speak, get a structured note', - '💊 Automatic ICD-10 and CPT billing codes', + { text: '🩺 Well visit planner from newborn through adolescence' }, + { text: '📋 Developmental milestone tracking across 4 domains' }, + { text: '💉 Full AAP/ACIP vaccine schedule with catch-up planner' }, + { text: '🎙 AI scribe — speak, get a structured note' }, + { text: '💊 Automatic ICD-10 and CPT billing codes' }, + { text: '🚨 Bedside calculators — weight-based dosing, emergency pathways (sepsis, status epilepticus, RSI, burns, anaphylaxis)', badge: 'NEW' }, ].map((item, i) => (
- {item} + {item.text} + {item.badge && ( + + {item.badge} + + )}
))}
@@ -476,6 +483,7 @@ export default function LandingPage() { { icon: '🎙', label: 'AI Scribe', sub: 'Voice-to-note' }, { icon: '💊', label: 'ICD-10', sub: 'Auto-suggested' }, { icon: '📋', label: 'SOAP Notes', sub: 'Structured' }, + { icon: '🚨', label: 'Bedside', sub: 'Dosing + pathways' }, ].map((item, i) => (