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-[#f0fdfa] relative">
{/* Mint Fresh Breeze Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
linear-gradient(45deg,
rgba(240,253,250,1) 0%,
rgba(204,251,241,0.7) 30%,
rgba(153,246,228,0.5) 60%,
rgba(94,234,212,0.4) 100%
),
radial-gradient(circle at 40% 30%, rgba(255,255,255,0.8) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(167,243,208,0.5) 0%, transparent 50%),
radial-gradient(circle at 20% 80%, rgba(209,250,229,0.6) 0%, transparent 45%)
`,
}}
/>
{/* Your Content/Components */}
</div>
);
};