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) <noreply@anthropic.com>
This commit is contained in:
parent
422fb1c14f
commit
67a90f73f5
1 changed files with 15 additions and 7 deletions
|
|
@ -443,18 +443,25 @@ export default function LandingPage() {
|
|||
<p style={{ color: '#94a3b8', lineHeight: 1.7, marginBottom: 28, fontSize: '0.95rem' }}>
|
||||
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.
|
||||
</p>
|
||||
<div style={{ display: 'flex', flexDirection: 'column', gap: 10, marginBottom: 32, overflow: 'hidden' }}>
|
||||
{[
|
||||
'🩺 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) => (
|
||||
<div key={i} style={{ fontSize: '0.88rem', color: '#cbd5e1', display: 'flex', gap: 8, alignItems: 'flex-start', overflowWrap: 'break-word', wordBreak: 'break-word', minWidth: 0 }}>
|
||||
<span>{item}</span>
|
||||
<span>{item.text}</span>
|
||||
{item.badge && (
|
||||
<span style={{ background: 'rgba(34,197,94,0.18)', color: '#86efac', border: '1px solid rgba(34,197,94,0.35)', borderRadius: 10, padding: '1px 7px', fontSize: '0.64rem', fontWeight: 700, letterSpacing: '0.05em', flexShrink: 0 }}>
|
||||
{item.badge}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
|
@ -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) => (
|
||||
<div key={i} style={{
|
||||
background: 'rgba(255,255,255,0.05)',
|
||||
|
|
|
|||
Loading…
Reference in a new issue