import React from 'react'; import { Users, Calendar, DollarSign, Activity, ArrowUpRight, ArrowDownRight, Zap, Target, TrendingUp, Clock, AlertCircle } from 'lucide-react'; export const MedDashboard: React.FC = () => { const stats = [ { label: 'Pacientes Ativos', value: '1.284', change: '+12%', positive: true, icon: Users, color: 'cyan' }, { label: 'Consultas Hoje', value: '24', change: '+4', positive: true, icon: Calendar, color: 'blue' }, { label: 'Receita Est. (MRR)', value: 'R$ 84.200', change: '+8%', positive: true, icon: DollarSign, color: 'emerald' }, { label: 'Taxa de Fidelidade', value: '94.2%', change: '-2%', positive: false, icon: Activity, color: 'purple' }, ]; return (
{/* Header */}

Painel Estratégico

Visão geral do ecossistema médico e fidelidade

{/* Stats Grid */}
{stats.map((stat, i) => { const Icon = stat.icon; return (
{stat.positive ? : } {stat.change}
{stat.label}
{stat.value}
); })}
{/* Main Content Grid */}
{/* Upcoming Appointments */}

Próximos Atendimentos

{[ { name: 'Ricardo Santos', time: '09:00', type: 'Consulta Geral', plan: 'Premium' }, { name: 'Ana Oliveira', time: '10:30', type: 'Retorno', plan: 'Base' }, { name: 'Marcos Viana', time: '13:00', type: 'Primeira Vez', plan: 'Premium' }, { name: 'Juliana Costa', time: '15:15', type: 'Check-up', plan: 'Base' }, ].map((item, i) => (
HRS {item.time}
{item.name}
{item.type}
Plano {item.plan}
))}
{/* Intelligent Insights */}

Inteligência
Médica

Alerta de Agenda

3 pacientes do Plano Base estão aptos para upgrade para o Premium este mês.

Performance

Sua produtividade aumentou 15% após a integração com o módulo Dental.

); }; const ArrowRight: React.FC<{ size: number }> = ({ size }) => ( );