Components
A 3D scene rendered as live ASCII art using Three.js, with an animated rotating torus knot and orbit controls.
Loading preview...
"use client";
import { AsciiRenderer } from "@/components/ui/ascii-renderer";
export default function Default() {
return (
<div className="relative h-[500px] w-full">
<AsciiRenderer />
</div>
);
}