Components
Loading preview...
Animated text marquee component with vertical scrolling.
npx shadcn@latest add https://21st.dev/r/tom_ui/text-marqueeimport { TextMarquee } from "@/components/ui/text-marquee"
export default function Demo() {
return (
<div className="flex items-center justify-center min-h-[400px] w-full">
<TextMarquee
prefix={<span className="text-2xl font-semibold text-muted-foreground mr-1">spell.sh/</span>}
height={120}
speed={0.8}
className="text-2xl font-bold"
>
<span>adgv</span>
<span>tomm</span>
<span>hugh</span>
<span>alex</span>
<span>emily</span>
</TextMarquee>
</div>
)
}