Components
Loading preview...
Here is Background snippets component
@bg.ibelick
npx shadcn@latest add https://21st.dev/r/bg.ibelick/background-snippetsexport default function Component() {
return (
<div className="relative min-h-screen w-full bg-neutral-900">
<div className="pointer-events-none absolute inset-0 -z-10 bg-fuchsia-400 opacity-20 blur-[100px] [background-size:20px_20px]"></div>
</div>
);
}