Components
An animated text component that cycles through a list of words with a spring slide-up transition and a gradient sweep reveal.
Loading preview...
import { DiaText } from "@/components/ui/text-dia";
export default function Default() {
return (
<div className="flex min-h-[300px] w-full items-center justify-center bg-white dark:bg-black">
<p className="text-4xl font-semibold tracking-tight text-black dark:text-white">
Build{" "}
<DiaText words={["faster", "smarter", "beautiful", "together"]} />{" "}
products
</p>
</div>
);
}