Components
Loading preview...
Here is Background Gradient Glow component
npx shadcn@latest add https://21st.dev/r/meghtrix/background-gradient-glow// 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-[#f8fafc] relative">
{/* Soft Morning Mist Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
linear-gradient(135deg,
rgba(248,250,252,1) 0%,
rgba(219,234,254,0.7) 30%,
rgba(165,180,252,0.5) 60%,
rgba(129,140,248,0.6) 100%
),
radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(199,210,254,0.4) 0%, transparent 50%),
radial-gradient(circle at 40% 80%, rgba(224,231,255,0.3) 0%, transparent 60%)
`,
}}
/>
{/* Your Content/Components */}
</div>
);
};