Docker images / prepare-release (push) Successful in 5s
Docker images / backend-image (push) Successful in 2m37s
Docker images / frontend-image (push) Successful in 2m22s
Docker images / updater-image (push) Successful in 38s
Docker images / notify-webhook (push) Has been skipped
Docker images / publish-release (push) Successful in 8s
16 lines
481 B
TypeScript
16 lines
481 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton"
|
|
|
|
export default function MainLoading() {
|
|
return (
|
|
<div className="flex flex-col gap-5 p-6">
|
|
<div className="grid grid-cols-2 sm:grid-cols-4 gap-4">
|
|
{Array.from({ length: 4 }).map((_, i) => (
|
|
<Skeleton key={i} className="h-24 rounded-xl" />
|
|
))}
|
|
</div>
|
|
<Skeleton className="h-10 w-full max-w-md rounded-lg" />
|
|
<Skeleton className="h-96 w-full rounded-xl" />
|
|
</div>
|
|
)
|
|
}
|