Components
Loading preview...
An 8-bit styled feature grid section. A centered title and description above a responsive grid of retro cards, each with a pixel icon, title, description, and an optional corner badge for highlights like NEW or COMING SOON.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-feature1"use client";
import Feature1 from "@/components/ui/8bit-feature1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-4 retro">
<Feature1 />
</div>
);
}