Components
Pure CSS gradient background in the Axis Blend style, made with the 21st.dev Gradient Builder. 5-color palette (#EAF4FC, #251EA4, #F94F07, #000000, #8C00FF). A drop-in, zero-dependency React component for hero sections, cards, and page backgrounds.

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