555e282cc4
pi-agent-plugin checks / lint (push) Has been cancelled
pi-agent-plugin checks / test (20) (push) Has been cancelled
pi-agent-plugin checks / test (22) (push) Has been cancelled
pi-agent-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / check_changes (push) Has been cancelled
TypeScript SDK CI / changelog_check (push) Has been cancelled
ci / changelog_check (push) Has been cancelled
ci / check_changes (push) Has been cancelled
ci / build_mem0 (3.10) (push) Has been cancelled
ci / build_mem0 (3.11) (push) Has been cancelled
ci / build_mem0 (3.12) (push) Has been cancelled
CLI Node CI / lint (push) Has been cancelled
CLI Node CI / test (20) (push) Has been cancelled
CLI Node CI / test (22) (push) Has been cancelled
CLI Node CI / build (push) Has been cancelled
CLI Python CI / lint (push) Has been cancelled
CLI Python CI / test (3.10) (push) Has been cancelled
CLI Python CI / test (3.11) (push) Has been cancelled
CLI Python CI / test (3.12) (push) Has been cancelled
CLI Python CI / build (push) Has been cancelled
openclaw checks / lint (push) Has been cancelled
openclaw checks / test (20) (push) Has been cancelled
openclaw checks / test (22) (push) Has been cancelled
openclaw checks / build (push) Has been cancelled
opencode-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (22) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (22) (push) Has been cancelled
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
export function AppDetailCardSkeleton() {
|
|
return (
|
|
<div>
|
|
<div className="bg-zinc-900 border w-[320px] border-zinc-800 rounded-xl mb-6">
|
|
<div className="flex items-center gap-2 mb-4 bg-zinc-800 rounded-t-xl p-3">
|
|
<div className="w-6 h-6 rounded-full bg-zinc-700 animate-pulse" />
|
|
<div className="h-5 w-24 bg-zinc-700 rounded animate-pulse" />
|
|
</div>
|
|
|
|
<div className="space-y-4 p-3">
|
|
<div>
|
|
<div className="h-4 w-20 bg-zinc-800 rounded mb-2 animate-pulse" />
|
|
<div className="h-5 w-24 bg-zinc-800 rounded animate-pulse" />
|
|
</div>
|
|
|
|
<div>
|
|
<div className="h-4 w-32 bg-zinc-800 rounded mb-2 animate-pulse" />
|
|
<div className="h-5 w-28 bg-zinc-800 rounded animate-pulse" />
|
|
</div>
|
|
|
|
<div>
|
|
<div className="h-4 w-32 bg-zinc-800 rounded mb-2 animate-pulse" />
|
|
<div className="h-5 w-28 bg-zinc-800 rounded animate-pulse" />
|
|
</div>
|
|
|
|
<div>
|
|
<div className="h-4 w-24 bg-zinc-800 rounded mb-2 animate-pulse" />
|
|
<div className="h-5 w-36 bg-zinc-800 rounded animate-pulse" />
|
|
</div>
|
|
|
|
<div>
|
|
<div className="h-4 w-24 bg-zinc-800 rounded mb-2 animate-pulse" />
|
|
<div className="h-5 w-36 bg-zinc-800 rounded animate-pulse" />
|
|
</div>
|
|
|
|
<hr className="border-zinc-800" />
|
|
|
|
<div className="flex gap-2 justify-end">
|
|
<div className="h-8 w-[170px] bg-zinc-800 rounded animate-pulse" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|