repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import { Skeleton } from "@/components/ui/skeleton"; |
| #2 | |
| #3 | export function MemorySkeleton() { |
| #4 | return ( |
| #5 | <div className="container mx-auto py-8 px-4"> |
| #6 | <div className="rounded-lg border border-zinc-800 bg-zinc-900 overflow-hidden"> |
| #7 | <div className="p-6"> |
| #8 | <div className="flex justify-between items-center mb-6"> |
| #9 | <Skeleton className="h-8 w-48 bg-zinc-800" /> |
| #10 | <div className="flex gap-2"> |
| #11 | <Skeleton className="h-8 w-24 bg-zinc-800" /> |
| #12 | <Skeleton className="h-8 w-24 bg-zinc-800" /> |
| #13 | </div> |
| #14 | </div> |
| #15 | |
| #16 | <div className="border-l-2 border-zinc-800 pl-4 mb-6"> |
| #17 | <Skeleton className="h-6 w-full bg-zinc-800" /> |
| #18 | </div> |
| #19 | |
| #20 | <div className="mt-6 pt-6 border-t border-zinc-800"> |
| #21 | <Skeleton className="h-4 w-48 bg-zinc-800" /> |
| #22 | </div> |
| #23 | </div> |
| #24 | </div> |
| #25 | </div> |
| #26 | ); |
| #27 | } |