import { Stethoscope, FileSearch, Brain, BookOpen } from 'lucide-react' const SUGGESTIONS = [ { icon: Stethoscope, label: 'Treatment', text: 'What are the first-line treatments for hypertension?', color: 'from-blue-500/20 to-blue-600/5', border: 'border-blue-500/20', iconBg: 'bg-blue-500/10', iconColor: 'text-blue-400', }, { icon: FileSearch, label: 'Pathology', text: 'Explain the pathophysiology of type 2 diabetes.', color: 'from-teal-500/20 to-teal-600/5', border: 'border-teal-500/20', iconBg: 'bg-teal-500/10', iconColor: 'text-teal-400', }, { icon: Brain, label: 'Diagnosis', text: 'What are the diagnostic criteria for major depressive disorder?', color: 'from-purple-500/20 to-purple-600/5', border: 'border-purple-500/20', iconBg: 'bg-purple-500/10', iconColor: 'text-purple-400', }, { icon: BookOpen, label: 'Pharmacology', text: 'Summarize the mechanism of action of beta-blockers.', color: 'from-amber-500/20 to-amber-600/5', border: 'border-amber-500/20', iconBg: 'bg-amber-500/10', iconColor: 'text-amber-400', }, ] export default function WelcomeScreen({ onSuggest }) { return (
{/* Background ambient glow orbs */}
{/* Hero section */}
{/* Animated logo badge */}
MedRAG Logo
{/* Title */}

MedRAG Assistant

Ask clinical questions grounded in your uploaded medical knowledge base.

{/* Suggestion cards */}

Try asking

{SUGGESTIONS.map(({ icon: Icon, label, text, color, border, iconBg, iconColor }) => ( ))}
) }