Components
Loading preview...
Pixel-art skeleton placeholder from 8bitcn.com — wraps shadcn/ui Skeleton with chunky pixel blocks for loading states.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-skeleton"use client";
import { Skeleton } from "@/components/ui/8bit-skeleton";
export default function Default() {
return (
<div className="flex flex-col w-full min-h-screen items-center justify-center gap-3 bg-background p-8 retro">
<Skeleton className="h-6 w-72" />
<Skeleton className="h-6 w-56" />
<Skeleton className="h-6 w-64" />
</div>
);
}