File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
app/[locale]/developers/tutorials Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,12 @@ const TutorialsList = dynamic(() => import("./_components/tutorials"), {
24
24
< div className = "mt-8 w-full md:w-2/3" >
25
25
< div className = "flex w-full flex-wrap gap-2 px-8 pb-16 pt-12 lg:grid lg:grid-cols-3 lg:gap-4 xl:grid-cols-4 2xl:grid-cols-5" >
26
26
{ Array . from ( { length : 30 } ) . map ( ( _ , index ) => (
27
- < Skeleton key = { index } className = "h-8 rounded-full" />
27
+ < Skeleton key = { "tag" + index } className = "h-8 rounded-full" />
28
28
) ) }
29
29
</ div >
30
- < SkeletonCardContent className = "p-8" />
31
- < SkeletonCardContent className = "p-8" />
30
+ { Array . from ( { length : 5 } ) . map ( ( _ , index ) => (
31
+ < SkeletonCardContent key = { "card" + index } className = "p-8" />
32
+ ) ) }
32
33
</ div >
33
34
) ,
34
35
} )
You can’t perform that action at this time.
0 commit comments