Components
Loading preview...
Firework animation
@bundui
npx shadcn@latest add https://21st.dev/r/bundui/fireworks-showimport { FireworksBackground } from "@/components/ui/fireworks-show";
const DemoFireworksBackground = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-black">
<FireworksBackground className="w-full h-screen">
<div className={("flex w-full h-screen justify-center items-center ")}>
<h1 className="font-sans font-bold text-7xl text-[#444444]">
Fireworks show
</h1>
</div>
</FireworksBackground>
</div>
);
};
export { DemoFireworksBackground };