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-[#f5f5dc] relative">
{/* Dreamy Sunset Gradient Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
linear-gradient(180deg,
rgba(245,245,220,1) 0%,
rgba(255,223,186,0.8) 25%,
rgba(255,182,193,0.6) 50%,
rgba(147,112,219,0.7) 75%,
rgba(72,61,139,0.9) 100%
),
radial-gradient(circle at 30% 20%, rgba(255,255,224,0.4) 0%, transparent 50%),
radial-gradient(circle at 70% 80%, rgba(72,61,139,0.6) 0%, transparent 70%),
radial-gradient(circle at 50% 60%, rgba(147,112,219,0.3) 0%, transparent 60%)
`,
}}
/>
{/* Your Content/Components */}
</div>
);
};