import { ListTodo, Globe, ChevronRight, Check } from 'lucide-react'; import { motion } from 'framer-motion'; import { GlassCard } from '../shared/GlassCard'; import { CardIcon } from '../shared/CardIcon'; import { useRecommendations } from '../../hooks/useRecommendations'; import type { RecommendationItem } from '../../lib/api'; interface RecommendedActionsCardProps { className?: string; delay?: number; } function ActionRow({ item, index, delay }: { item: RecommendationItem; index: number; delay: number }) { const rowClass = `flex w-full items-center gap-4 rounded-lg border px-4 py-3.5 text-left transition-colors ${ item.done ? 'border-[rgba(104,243,73,0.2)] bg-[rgba(104,243,73,0.03)] cursor-default' : 'border-white/[0.1] bg-white/[0.03] cursor-pointer hover:bg-white/[0.06]' }`; const inner = ( <>
{item.label}
{item.description}
Based on your current performance, here are recommended actions