Components
Text Generate Effect
Reveals text word-by-word for a typing/AI-generation feel. For hero copy and intros.
Installation
npx shadcn@latest add https://ui.saasflare.io/r/text-generate-effect.jsonpnpm add @saasflare/uiUsage
Loading…
"use client"import { TextGenerateEffect } from "@saasflare/ui"/** Text reveals word by word as it enters view. */export function Demo() { return ( <div className="flex h-64 w-full items-center justify-center rounded-lg border bg-fd-card p-8 text-center"> <TextGenerateEffect text="Build your SaaS in record time" className="text-2xl font-bold" /> </div> )}Heading
Loading…
"use client"import { TextGenerateEffect } from "@saasflare/ui"/** Slower stagger rendered as an `h1`. */export function Demo() { return ( <div className="flex h-64 w-full items-center justify-center rounded-lg border bg-fd-card p-8 text-center"> <TextGenerateEffect text="Ship faster. Scale better. Sleep more." stagger={0.08} as="h1" className="text-3xl font-bold tracking-tight" /> </div> )}API Reference
Prop
Type