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-[#fff7ed] relative">
{/* Peachy Sunrise Glow Background */}
<div
className="absolute inset-0 z-0"
style={{
backgroundImage: `
linear-gradient(180deg,
rgba(255,247,237,1) 0%,
rgba(255,237,213,0.8) 25%,
rgba(254,215,170,0.6) 50%,
rgba(251,146,60,0.4) 75%,
rgba(249,115,22,0.3) 100%
),
radial-gradient(circle at 20% 80%, rgba(255,255,255,0.6) 0%, transparent 40%),
radial-gradient(circle at 80% 20%, rgba(254,215,170,0.5) 0%, transparent 50%),
radial-gradient(circle at 60% 60%, rgba(252,165,165,0.3) 0%, transparent 45%)
`,
}}
/>
{/* Your Content/Components */}
</div>
);
};