Components
Loading preview...
Wave component with props for width, height, speed, tiles, pointer control, and DPR.
npx shadcn@latest add https://21st.dev/r/designali-in/waveimport { Wave } from "@/components/ui/wave";
export default function DemoOne() {
return (
<main className="flex relative justify-center items-center">
<Wave className="absolute" speed={0.5} tiles={1} />
<h1 className="text-center absolute mt-8 text-5xl font-semibold">
Gradient Wave
</h1>
</main>
)
}