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-white">
<div className="absolute inset-0 bg-[linear-gradient(to_right,#d1d5db33_1px,transparent_1px),linear-gradient(to_bottom,#d1d5db33_1px,transparent_1px)] bg-[size:40px_40px]" />
<div className="absolute left-1/3 top-1/3 h-[500px] w-[500px] rounded-full bg-emerald-400 opacity-20 blur-[120px]" />
</div>
);
}