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-[#0f172a] relative">
{/* Blue Radial Glow Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `radial-gradient(circle 600px at 50% 50%, rgba(59,130,246,0.3), transparent)`,
}}
/>
{/* Your Content/Components */}
</div>
);
};