"use client"; import { useState } from "react"; import type { ReactElement } from "react"; import { Card, SectionHeader } from "@mosaic/ui"; interface QuickAction { id: string; label: string; icon: string; iconBg: string; } const actions: QuickAction[] = [ { id: "new-project", label: "New Project", icon: "🚀", iconBg: "rgba(47,128,255,0.12)" }, { id: "spawn-agent", label: "Spawn Agent", icon: "🤖", iconBg: "rgba(139,92,246,0.12)" }, { id: "view-telemetry", label: "View Telemetry", icon: "📊", iconBg: "rgba(20,184,166,0.12)" }, { id: "review-tasks", label: "Review Tasks", icon: "📋", iconBg: "rgba(245,158,11,0.12)" }, ]; interface ActionButtonProps { action: QuickAction; } function ActionButton({ action }: ActionButtonProps): ReactElement { const [hovered, setHovered] = useState(false); return ( ); } export function QuickActions(): ReactElement { return (
{actions.map((action) => ( ))}
); }