Components
Loading preview...
Here is Gradient Background Bottom Blue
npx shadcn@latest add https://21st.dev/r/meghtrix/gradient-backgrounds// 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-white relative">
{/* Emerald Glow Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
radial-gradient(125% 125% at 50% 10%, #ffffff 40%, #10b981 100%)
`,
backgroundSize: "100% 100%",
}}
/>
{/* Your Content/Components */}
</div>
);
};