Components
Loading preview...
An 8-bit styled searchable help center. A retro pixel search input filters question/answer pairs live, grouped by category into collapsible retro accordions, with an empty state when nothing matches.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-faq3"use client";
import FAQ3 from "@/components/ui/8bit-faq3";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-4 retro">
<FAQ3 />
</div>
);
}