Components
npx shadcn@latest add https://21st.dev/r/diriktv/confetti-backgroundLoading preview...
"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>
);
}