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-[#fefcff] relative">
{/* Dreamy Sky Pink Glow */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
radial-gradient(circle at 30% 70%, rgba(173, 216, 230, 0.35), transparent 60%),
radial-gradient(circle at 70% 30%, rgba(255, 182, 193, 0.4), transparent 60%)`,
}}
/>
{/* Your Content/Components */}
</div>
);
};