GodUIGodUI
108Follow on X
Original headphones
original
ascii

ASCII Dither

tsx
import { AsciiDither } from "@/components/godui/ascii-dither";export function Portrait() {return (  <div className="aspect-[4/5] w-80 overflow-hidden rounded-xl border">    <AsciiDither      src="/portrait.jpg"      alt="Portrait rendered as ASCII"      cellSize={9}      color="theme"      interactive    />  </div>);}