import { CurtainBackground } from "@/components/ui/curtain-background"export function Demo() {
return (
<div className="h-[420px] overflow-hidden rounded-3xl">
<CurtainBackground
colors={["#ef4444", "#dc2626", "#b91c1c"]}
speed={0.3}
grain={0.6}
/>
</div>
)
}