Components
Loading preview...
Here is Background Gradient Snippet component
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/background-gradient-snippetexport default function Component() {
return (
<div className="fixed inset-0 -z-10 bg-black">
<div className="absolute inset-0 bg-[radial-gradient(circle_700px_at_50%_200px,rgba(96,165,250,0.25),transparent)]" />
<div className="absolute inset-0 bg-[radial-gradient(circle_400px_at_70%_500px,rgba(244,114,182,0.3),transparent)]" />
</div>
);
}