Components
Loading preview...
KPI metrics dashboard with stat cards and 8-bit progress bars, in the retro pixel style.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-advanced2"use client";
import Advanced2 from "@/components/ui/8bit-advanced2";
export default function Default() {
return (
<div className="dark flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<Advanced2 />
</div>
);
}