import { WavesShaderBackground } from "@/components/ui/waves-shader-background"export function Demo() {
return (
<div className="h-[420px] overflow-hidden rounded-3xl">
<WavesShaderBackground
colors={["#031c26", "#1b6ca8", "#5ad2f4", "#eaf9ff"]}
speed={-0.727}
intensity={0.54}
grain={0.101}
/>
</div>
)
}