@@ -21,7 +21,7 @@ const sections = categories.map((slug) => {
2121 .filter ((e : TutorialEntry ) => e .data .category === slug )
2222 .sort (
2323 (a : TutorialEntry , b : TutorialEntry ) =>
24- (a .data .categoryIndex ?? 1000 ) - (b .data .categoryIndex ?? 1000 )
24+ (a .data .categoryIndex ?? 1000 ) - (b .data .categoryIndex ?? 1000 ),
2525 );
2626
2727 return { slug , name , sectionEntries };
@@ -55,7 +55,7 @@ setJumpToState({
5555 </h2 >
5656 <ul class = " content-grid border-b border-sidebar-type-color last:border-0" >
5757 { sectionEntries .map ((entry : TutorialEntry , i : number ) => (
58- <li class = " col-span-3" >
58+ <li class = " col-span-6 md:col-span- 3" >
5959 <GridItemTutorial item = { entry } lazyLoad = { i > 3 } />
6060 </li >
6161 ))}
@@ -66,7 +66,9 @@ setJumpToState({
6666
6767 <section >
6868 <h2 class =" mb-gutter-md mt-0" >
69- { t (" tutorialCategories" , " education-resources" )} <a id =" education-resources" ></a > <!-- ✅ changed from tutorialsPage -->
69+ { t (" tutorialCategories" , " education-resources" )} <a
70+ id =" education-resources" ></a >
71+ <!-- ✅ changed from tutorialsPage -->
7072 </h2 >
7173 <p >{ t (" tutorialsPage" , " education-resources-snippet" )} </p >
7274 <LinkButton url =" /education-resources" variant =" link" class =" mt-lg" >
0 commit comments