Components
Loading preview...
An 8-bit styled FAQ block that frames each question as a checkpoint with cleared, active, and locked states. Built on the retro accordion and badge primitives with pixel borders and status badges.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-game-faq1"use client";
import GameFAQ1 from "@/components/ui/8bit-game-faq1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<GameFAQ1 />
</div>
);
}