BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/8bitcn/game-roadmap1

8-bit game-roadmap1

8bitcn/game-roadmap1
FreeBlock

Quest log roadmap with status states.

Install it

npx shadcn@latest add https://www.8bitcn.com/r/game-roadmap1.json

Source

components/ui/8bit/blocks/game-roadmap1.tsxwww.8bitcn.com/r/game-roadmap1.json
1import { cn } from "@/lib/utils";
2
3import { Badge } from "@/components/ui/8bit/badge";
4import {
5 Card,
6 CardContent,
7 CardHeader,
8 CardTitle,
9} from "@/components/ui/8bit/card";
10
11import "@/components/ui/8bit/styles/retro.css";
12
13export interface Quest {
14 description: string;
15 status: "completed" | "in-progress" | "locked";
16 title: string;
17}
18
19interface GameRoadmap1Props {
20 className?: string;
21 description?: string;
22 quests?: Quest[];
23 title?: string;
24}
25
26const statusConfig = {
27 completed: { badge: "CLEARED", variant: "default" as const },
28 "in-progress": { badge: "ACTIVE", variant: "secondary" as const },
29 locked: { badge: "LOCKED", variant: "secondary" as const },
30};
31
32const defaultQuests: Quest[] = [
33 {
34 title: "Gather the Party",
35 description: "Recruit your team. A warrior, a mage, and a rogue walk into a tavern. Nobody leaves until the quest is accepted.",
36 status: "completed",
37 },
38 {
39 title: "Cross the Marshlands",
40 description: "Navigate the fog. Avoid the swamp trolls. Find the hidden path to the Ember Citadel before nightfall.",
41 status: "completed",
42 },
43 {
44 title: "Siege of Ember Citadel",
45 description: "Break through the outer wall. Defeat the skeletal guards. Secure the courtyard for base camp.",
46 status: "in-progress",
47 },
48 {
49 title: "The Underforge",
50 description: "Descend into the volcanic tunnels beneath the citadel. The dwarven king awaits — friend or foe, unknown.",
51 status: "in-progress",
52 },
53 {
54 title: "Face the Lich King",
55 description: "The final boss awaits in the throne room. Bring fire resistance potions. You will need them.",
56 status: "locked",
57 },
58 {
59 title: "Claim the Crown",
60 description: "If you survive, the kingdom is yours. New game plus unlocked. The real adventure begins.",
61 status: "locked",
62 },
63];
64
65export default function GameRoadmap1({
66 title = "Quest Log",
67 description = "Your journey through the 8bitcn universe",
68 quests = defaultQuests,
69 className,
70}: GameRoadmap1Props) {
71 return (
72 <section className={cn("w-full px-4 py-16", className)}>
73 <div className="mx-auto max-w-2xl">
74 {(title || description) && (
75 <div className="mb-10 text-center">
76 {title && (
77 <h2 className="retro mb-3 font-bold text-2xl tracking-tight md:text-3xl">
78 {title}
79 </h2>
80 )}
81 {description && (
82// … truncated

What it pulls in

Other registry items

  • badge
  • card

Files it writes

  • components/ui/8bit/blocks/game-roadmap1.tsx
  • components/ui/8bit/styles/retro.css
  • components/ui/8bit/badge.tsx
  • components/ui/8bit/card.tsx

Facts

Registry
8bitcn
Type
registry:block
Access
Free
Files written
4
Licence
the repository states none
First indexed
2026-08-03
Last confirmed
yesterday

Go to the source

www.8bitcn.com Raw registry item This item as JSON

More from 8bitcn

All 121 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
8-bit Advanced 1advanced18bitcnBlocksFreeno deps · 3 files
8-bit Advanced 2advanced28bitcnBlocksFreeno deps · 5 files
8-bit Advanced 3advanced38bitcnBlocksFreeno deps · 6 files
8-bit Audio Settingsaudio-settings8bitcnBlocksFree2 deps · 7 files
8-bit Chapter Introchapter-intro8bitcnBlocksFreeno deps · 3 files
8-bit Character Sheetcharacter-sheet8bitcnBlocksFreeno deps · 9 files
8-bit Chartchart8bitcnBlocksFreeno deps · 3 files
8-bit Chart Area Stepchart-area-step8bitcnBlocksFreeno deps · 3 files
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex