Components
A cool text effect that fades in text on page load, one by one.
npx shadcn@latest add https://21st.dev/r/aceternity/text-generate-effectLoading preview...
"use client";
import { TextGenerateEffect } from "@/components/ui/text-generate-effect";
const words = `Oxygen gets you high. In a catastrophic emergency, we're taking giant, panicked breaths. Suddenly you become euphoric, docile. You accept your fate. It's all right here. Emergency water landing, six hundred miles an hour. Blank faces, calm as Hindu cows
`;
export function TextGenerateEffectDemo() {
return <TextGenerateEffect duration={2} filter={false} words={words} />;
}