Components
Loading preview...
An 8-bit styled feature list section. A centered title and description above numbered steps, each with a pixel-bordered number badge, title, optional highlight badge, and description, divided by retro dashed separators.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-feature2"use client";
import Feature2 from "@/components/ui/8bit-feature2";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-4 retro">
<Feature2 />
</div>
);
}