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 { |
| #2 | Card, |
| #3 | CardContent, |
| #4 | CardFooter, |
| #5 | CardHeader, |
| #6 | } from "@/components/ui/card"; |
| #7 | |
| #8 | export function AppCardSkeleton() { |
| #9 | return ( |
| #10 | <Card className="bg-zinc-900 text-white border-zinc-800"> |
| #11 | <CardHeader className="pb-2"> |
| #12 | <div className="flex items-center gap-1"> |
| #13 | <div className="relative z-10 rounded-full overflow-hidden bg-zinc-800 w-6 h-6 animate-pulse" /> |
| #14 | <div className="h-7 w-32 bg-zinc-800 rounded animate-pulse" /> |
| #15 | </div> |
| #16 | </CardHeader> |
| #17 | <CardContent className="pb-4 my-1"> |
| #18 | <div className="grid grid-cols-2 gap-4"> |
| #19 | <div> |
| #20 | <div className="h-4 w-24 bg-zinc-800 rounded mb-2 animate-pulse" /> |
| #21 | <div className="h-7 w-32 bg-zinc-800 rounded animate-pulse" /> |
| #22 | </div> |
| #23 | <div> |
| #24 | <div className="h-4 w-24 bg-zinc-800 rounded mb-2 animate-pulse" /> |
| #25 | <div className="h-7 w-32 bg-zinc-800 rounded animate-pulse" /> |
| #26 | </div> |
| #27 | </div> |
| #28 | </CardContent> |
| #29 | <CardFooter className="border-t border-zinc-800 p-0 px-6 py-2 flex justify-between items-center"> |
| #30 | <div className="h-6 w-16 bg-zinc-800 rounded-lg animate-pulse" /> |
| #31 | <div className="h-8 w-28 bg-zinc-800 rounded-lg animate-pulse" /> |
| #32 | </CardFooter> |
| #33 | </Card> |
| #34 | ); |
| #35 | } |