Components
Loading preview...
Here is Looping words with GSAP
@osmosupply
npx shadcn@latest add https://21st.dev/r/osmosupply/looping-words-with-gsap/* src/demos/default.tsx */
import { LoopingWords } from '@/components/ui/looping-words-with-gsap';
const DemoPage: React.FC = () => {
const words = ["GSAP", "Looping", "Words", "Selector", "Made with"];
return (
<div style={{ position: 'relative', width: '100%', minHeight: '100vh', display: 'flex', flexDirection: 'column' }}>
<LoopingWords words={words} />
</div>
);
};
export default DemoPage;