Components
Loading preview...
An animated confetti background
npx shadcn@latest add https://21st.dev/r/diriktv/confetti-background"use client";
import ConfettiBackground from './components/ui/confetti-background';
export default function Home() {
return (
<div className="min-h-screen flex items-center justify-center bg-transparent relative overflow-hidden">
<ConfettiBackground />
</div>
);
}