Components
Loading preview...
A retro 8-bit step area chart block with hoverable data points and pixel styling.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-chart-area-step"use client";
import ChartAreaStep from "@/components/ui/8bit-chart-area-step";
export default function Default() {
return (
<div className="flex min-h-screen w-full items-center justify-center bg-background p-8 retro">
<div className="w-full max-w-3xl rounded-lg border-4 border-foreground bg-card p-6 shadow-xl">
<ChartAreaStep />
</div>
</div>
);
}