Components
Pure CSS gradient background in the Silk Blend style, made with the 21st.dev Gradient Builder. 4-color palette (#0B1E3B, #1E5A8A, #4F9AD0, #BFE6F5). Features: film grain. A drop-in, zero-dependency React component for hero sections, cards, and page backgrounds.

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