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 relative">
{/* Aurora Dream Soft Harmony */}
<div
className="absolute inset-0 z-0"
style={{
background: `
radial-gradient(ellipse 80% 60% at 60% 20%, rgba(175, 109, 255, 0.50), transparent 65%),
radial-gradient(ellipse 70% 60% at 20% 80%, rgba(255, 100, 180, 0.45), transparent 65%),
radial-gradient(ellipse 60% 50% at 60% 65%, rgba(255, 235, 170, 0.43), transparent 62%),
radial-gradient(ellipse 65% 40% at 50% 60%, rgba(120, 190, 255, 0.48), transparent 68%),
linear-gradient(180deg, #f7eaff 0%, #fde2ea 100%)
`,
}}
/>
{/* Your content goes here */}
</div>
);
};