This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add more words to animated title

+8 -1
+8 -1
src/webapp/components/landing/animatedTitle/AnimatedTitle.tsx
··· 1 1 import { useState, useEffect } from 'react'; 2 2 import { Title, Text, Transition, Box } from '@mantine/core'; 3 3 4 - const words = ['creators', 'researchers', 'designers', 'writers', 'thinkers']; 4 + const words = [ 5 + 'creators', 6 + 'researchers', 7 + 'designers', 8 + 'writers', 9 + 'thinkers', 10 + 'you', 11 + ]; 5 12 6 13 export default function AnimatedTitle() { 7 14 const [index, setIndex] = useState(0);