Components
Pure CSS gradient background in the Axis Blend style, made with the 21st.dev Gradient Builder. 2-color palette (#236B26, #97FF99). A drop-in, zero-dependency React component for hero sections, cards, and page backgrounds.

import { GradientBackground } from "@/components/ui/green-down"
export default function GradientBackgroundDemo() {
return (
<div className="relative h-[440px] w-full overflow-hidden rounded-xl">
<GradientBackground className="h-full w-full" />
</div>
)
}