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="absolute top-0 -z-10 h-full w-full bg-white">
<div className="absolute bottom-auto left-auto right-0 top-0 h-[500px] w-[500px] -translate-x-[30%] translate-y-[20%] rounded-full bg-[rgba(173,109,244,0.5)] opacity-50 blur-[80px]"></div>
</div>
);
}