Components
Loading preview...
Fake terminal demo shell that renders a sequence of command, output, and comment lines with a blinking cursor, in the 8-bit retro style.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-advanced1"use client";
import Advanced1 from "@/components/ui/8bit-advanced1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<Advanced1 className="py-0" />
</div>
);
}
export { Default };