chore: snapshot before HartOMat rebrand

This commit is contained in:
2026-04-06 12:41:44 +02:00
parent 7d27ffc116
commit fa7093307a
25 changed files with 247 additions and 92 deletions
+3 -3
View File
@@ -64,15 +64,15 @@ function BaseNode({ label, icon, color, description, selected, hasSource = true,
}`}
>
{hasTarget && (
<Handle type="target" position={Position.Left} className="w-3 h-3 bg-gray-400 border-2 border-white" />
<Handle type="target" position={Position.Left} className="w-3 h-3 bg-content-muted border-2 border-surface" />
)}
<div className={`flex items-center gap-2 mb-1 text-${color}-600`}>
{icon}
<span className="font-medium text-sm">{label}</span>
</div>
{description && <p className="text-xs text-gray-500">{description}</p>}
{description && <p className="text-xs text-content-muted">{description}</p>}
{hasSource && (
<Handle type="source" position={Position.Right} className="w-3 h-3 bg-gray-400 border-2 border-white" />
<Handle type="source" position={Position.Right} className="w-3 h-3 bg-content-muted border-2 border-surface" />
)}
</div>
)