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/simpleximport { 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="ripple"
type="2x2"
colorBack="#330000"
colorFront="#ffff00"
pxSize={2}
speed={1.2}
/>
<span className="pointer-events-none z-10 text-center text-7xl leading-none absolute font-semibold text-white tracking-tighter whitespace-pre-wrap">
Simplex
</span>
</div>
)
}