Components
Animated text that rapidly cycles through greetings in different languages with a smooth slide-and-fade transition.
Loading preview...
import DynamicText from "@/components/ui/dynamic-text";
export default function Default() {
return (
<div className="flex min-h-[350px] w-full items-center justify-center bg-background text-foreground">
<DynamicText />
</div>
);
}