Components
Starting preview...
Order and chaos dance —digital poetry in motion.
npx shadcn@latest add https://21st.dev/r/xubohuah/entropy'use client'
import * as React from "react"
import { Entropy } from "@/components/ui/entropy"
export function EntropyDemo() {
return (
<div className="flex flex-col items-center justify-center bg-black text-white min-h-screen w-full p-8">
<div className="flex flex-col items-center">
<Entropy className="rounded-lg" />
<div className="mt-6 text-center">
<div className="space-y-4 font-mono text-[14px] leading-relaxed">
<p className="italic text-gray-400/80 tracking-wide">
“Order and chaos dance —
<span className="opacity-70">digital poetry in motion.”</span>
</p>
</div>
</div>
</div>
</div>
)
}
export { EntropyDemo }