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-slate-950">
<div className="absolute inset-0 bg-[linear-gradient(to_right,#47556940_1px,transparent_1px),linear-gradient(to_bottom,#47556940_1px,transparent_1px)] bg-[size:24px_24px] [mask-image:radial-gradient(ellipse_90%_70%_at_50%_40%,#000_70%,transparent_100%)] [-webkit-mask-image:radial-gradient(ellipse_90%_70%_at_50%_40%,#000_70%,transparent_100%)] [mask-repeat:no-repeat] [-webkit-mask-repeat:no-repeat]" />
</div>
);
}