Components
Loading preview...
An 8-bit roadmap styled as a quest log with a dashed timeline rail and completed, active, and locked quest states. Each quest is a retro card with a status badge. Built on the 8bitcn card and badge primitives.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-game-roadmap1"use client";
import GameRoadmap1 from "@/components/ui/8bit-game-roadmap1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<GameRoadmap1 />
</div>
);
}