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">
{/* Warm Beige Texture */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
radial-gradient(circle at 20% 80%, rgba(120,119,198,0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255,255,255,0.5) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(120,119,198,0.1) 0%, transparent 50%)`,
}}
/>
{/* Your Content/Components */}
</div>
);
};