import { Link } from "react-router-dom" import { Terminal } from "lucide-react" import type { ToolSummary } from "@/types" import { runnerLabel } from "@/lib/labels" interface ToolCardProps { tool: ToolSummary } export function ToolCard({ tool }: ToolCardProps) { return (
{tool.description}
)}