Components
Loading preview...
This appears to be a sophisticated dithering shader with various animated shapes and effects.
npx shadcn@latest add https://21st.dev/r/designali-in/dithering-shaderimport { DitheringShader } from "@/components/ui/dithering-shader";
export default function DemoOne() {
return (
<div className="relative flex h-full w-full flex-col items-center justify-center overflow-hidden">
<DitheringShader
shape="simplex"
type="24x24"
colorBack="#1a1a1a"
colorFront="#a855f7"
pxSize={5}
speed={0.5}
/>
<span className="pointer-events-none z-10 text-center text-7xl leading-none absolute font-semibold tracking-tighter whitespace-pre-wrap text-white">
Simplex
</span>
</div>
)
}