Components
Loading preview...
Here is Gradient Blur Bg component
npx shadcn@latest add https://21st.dev/r/meghtrix/gradient-blur-bg// This is file of your component
// You can use any dependencies from npm; we import them automatically in package.json
import { cn } from "@/lib/utils";
import { useState } from "react";
export default function Component() {
const [count, setCount] = useState(0);
return (
<div className="min-h-screen w-full bg-[#f9fafb] relative">
{/* Diagonal Fade Grid Background - Top Right */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
linear-gradient(to right, #d1d5db 1px, transparent 1px),
linear-gradient(to bottom, #d1d5db 1px, transparent 1px)
`,
backgroundSize: "32px 32px",
WebkitMaskImage:
"radial-gradient(ellipse 80% 80% at 100% 0%, #000 50%, transparent 90%)",
maskImage:
"radial-gradient(ellipse 80% 80% at 100% 0%, #000 50%, transparent 90%)",
}}
/>
{/* Your Content/Components */}
</div>
);
};