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">
{/* Minty Cloud Drift Gradient */}
<div
className="absolute inset-0 z-0"
style={{
background: `linear-gradient(120deg, #C8E6C9 0%, #DCEDC8 20%, #F1F8E9 40%, #FFFDE7 60%, #FFF9C4 80%, #F0F4C3 100%)`,
}}
/>
{/* Your Content/Components */}
</div>
);
};