Components
Loading preview...
An 8-bit styled horizontal timeline block with numbered checkpoints on a dashed track. Renders steps horizontally on desktop and stacks vertically on mobile, with a retro pixel-font title and description. Fully prop-driven via title, description, and steps.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-timeline2"use client";
import Timeline2 from "@/components/ui/8bit-timeline2";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<Timeline2 />
</div>
);
}