Components
Loading preview...
pyramid rendered in ascii text
npx shadcn@latest add https://21st.dev/r/montekkundan/ascii-pyramidimport PyramidAnimation from "@/components/ui/ascii-pyramid";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<PyramidAnimation
edges={false}
/>
</div>
);
};
// const DemoWireframe = () => {
// return (
// <div className="flex w-full h-screen justify-center items-center">
// <PyramidAnimation
// wireframe={true}
// color={true}
// edges={true}
// speed={0.03}
// axis="y"
// />
// </div>
// );
// };
export { DemoOne };