Components
Loading preview...
An 8-bit styled team grid block. Responsive card grid of team members with pixel avatars, name, role, and an optional corner badge. Built from retro avatar, badge, and card primitives.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-team1"use client";
import Team1 from "@/components/ui/8bit-team1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background retro">
<Team1 />
</div>
);
}