File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -249,8 +249,32 @@ export const AboutMaia = () => {
249249 </ p >
250250 </ div >
251251 </ div >
252- < div className = "mx-auto max-w-7xl px-4 pt-16" >
253- < div className = "grid gap-6 md:grid-cols-3" >
252+ < div className = "mx-auto max-w-[90%] px-4 pt-16" >
253+ { /* Layout for screens < 1280px */ }
254+ < div className = "xl:hidden" >
255+ { /* Featured papers in a row */ }
256+ < div className = "mb-6 grid grid-cols-2 gap-6" >
257+ < PaperCard
258+ paper = { researchPapers . maia1 }
259+ featured = { true }
260+ className = ""
261+ />
262+ < PaperCard
263+ paper = { researchPapers . maia2 }
264+ featured = { true }
265+ className = ""
266+ />
267+ </ div >
268+ { /* Other papers in a row */ }
269+ < div className = "grid grid-cols-2 gap-4 sm:grid-cols-4" >
270+ { researchPapers . others . map ( ( paper , index ) => (
271+ < PaperCard key = { index } paper = { paper } className = "flex-1" />
272+ ) ) }
273+ </ div >
274+ </ div >
275+
276+ { /* Layout for screens >= 1280px (original layout) */ }
277+ < div className = "hidden xl:grid xl:grid-cols-3 xl:gap-6" >
254278 < PaperCard
255279 paper = { researchPapers . maia1 }
256280 featured = { true }
You can’t perform that action at this time.
0 commit comments