Components
An animated fullscreen canvas background of twinkling retro pixel stars with periodic pixelated shooting stars.
npx @21st-dev/cli add uicapsule/background-pixel-starsLoading preview...
"use client";
import { BackgroundPixelStars } from "@/components/ui/background-pixel-stars";
const Default = () => {
return (
<div className="h-dvh w-dvw bg-black bg-[url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAAIElEQVR42mIUEhJiwAbevXuHVZyJgUQwqmEUDB0AEGAADd8DEPTX6ksAAAAASUVORK5CYII=')] bg-[size:10px]">
<BackgroundPixelStars />
</div>
);
};
export default Default;