Components
Loading preview...
Pixel-art alert from 8bitcn.com — wraps shadcn/ui Alert with hard-edge pixel borders and retro typography.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-alert"use client";
import { Alert, AlertTitle, AlertDescription } from "@/components/ui/8bit-alert";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<Alert className="w-96">
<AlertTitle>Quest Started</AlertTitle>
<AlertDescription>Defeat the boss to unlock level 9.</AlertDescription>
</Alert>
</div>
);
}