Components
Loading preview...
Here is Radial Glow Background component
npx shadcn@latest add https://21st.dev/r/meghtrix/radial-glow-background// 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-[#020617] relative">
{/* Emerald Radial Glow Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `radial-gradient(circle 500px at 50% 300px, rgba(16,185,129,0.35), transparent)`,
}}
/>
{/* Your Content/Components */}
</div>
);
};