mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 09:16:46 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
6ddf0ccb76
commit
c39d1c4869
1 changed files with 4 additions and 4 deletions
|
|
@ -84,16 +84,16 @@ function AgentePage() {
|
||||||
<div className="flex items-start gap-4">
|
<div className="flex items-start gap-4">
|
||||||
<div className={cn(
|
<div className={cn(
|
||||||
"h-14 w-14 rounded-full flex items-center justify-center shrink-0",
|
"h-14 w-14 rounded-full flex items-center justify-center shrink-0",
|
||||||
status === "active" ? "bg-emerald-500/10" : "bg-primary/10",
|
status === "active" ? "bg-success/10" : "bg-primary/10",
|
||||||
)}>
|
)}>
|
||||||
<Bot className={cn("h-7 w-7", status === "active" ? "text-emerald-500" : "text-primary")} />
|
<Bot className={cn("h-7 w-7", status === "active" ? "text-success" : "text-primary")} />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<div className="flex items-center gap-3 flex-wrap">
|
<div className="flex items-center gap-3 flex-wrap">
|
||||||
<h2 className="text-xl font-bold">{agentName}</h2>
|
<h2 className="text-xl font-bold">{agentName}</h2>
|
||||||
<Badge
|
<Badge
|
||||||
variant="outline"
|
variant={statusInfo.variant}
|
||||||
className={cn(statusInfo.color, statusInfo.pulse && "animate-pulse")}
|
className={cn(statusInfo.pulse && "animate-pulse")}
|
||||||
>
|
>
|
||||||
{statusInfo.label}
|
{statusInfo.label}
|
||||||
</Badge>
|
</Badge>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue