@@ -171,24 +171,14 @@ export const HomeHero: React.FC<Props> = ({ scrollHandler }: Props) => {
171171 transition = { { duration : 0.4 , delay : 0.2 , ease : 'easeOut' } }
172172 >
173173 < motion . button
174- className = "flex items-center justify-center gap-2 rounded-md bg-human-3 px-6 py-3 text-white hover:bg-opacity-90"
174+ className = "flex items-center justify-center gap-2 rounded-md bg-human-4 px-6 py-3 text-white hover:bg-opacity-90"
175175 onClick = { scrollHandler }
176176 whileHover = { { scale : 1.05 } }
177177 whileTap = { { scale : 0.98 } }
178178 transition = { { duration : 0.2 } }
179179 >
180180 < p > Learn More</ p >
181- < motion . i
182- className = "h-4"
183- animate = { { x : [ 0 , 3 , 0 ] } }
184- transition = { {
185- repeat : Infinity ,
186- duration : 1.5 ,
187- ease : 'easeInOut' ,
188- } }
189- >
190- { ArrowIcon }
191- </ motion . i >
181+ < i className = "h-4" > { ArrowIcon } </ i >
192182 </ motion . button >
193183 { ! user ?. lichessId && (
194184 < motion . button
@@ -251,26 +241,26 @@ export const HomeHero: React.FC<Props> = ({ scrollHandler }: Props) => {
251241 </ div >
252242 </ div >
253243 < motion . div
254- className = "flex gap-6"
244+ className = "grid grid-cols-3 gap-6 px-2 md:flex "
255245 initial = { { opacity : 0 , y : 10 } }
256246 animate = { { opacity : 1 , y : 0 } }
257247 transition = { { duration : 0.4 , delay : 0.3 } }
258248 >
259- < p className = "text-base text-primary/80" >
249+ < p className = "text-center text- base text-primary/80" >
260250 < AnimatedNumber
261251 value = { globalStats ?. play_moves_total || 0 }
262252 className = "font-bold"
263253 /> { ' ' }
264254 moves played
265255 </ p >
266- < p className = "text-base text-primary/80" >
256+ < p className = "text-center text- base text-primary/80" >
267257 < AnimatedNumber
268258 value = { globalStats ?. puzzle_games_total || 0 }
269259 className = "font-bold"
270260 /> { ' ' }
271261 puzzle games solved
272262 </ p >
273- < p className = "text-base text-primary/80" >
263+ < p className = "text-center text- base text-primary/80" >
274264 < AnimatedNumber
275265 value = { globalStats ?. turing_games_total || 0 }
276266 className = "font-bold"
0 commit comments