@@ -11,7 +11,7 @@ export async function SponsorsSection() {
11
11
< h2 className = "mb-12 text-center text-3xl font-bold tracking-tighter dark:text-white md:text-4xl xl:text-5xl" >
12
12
Sponsors
13
13
</ h2 >
14
- < ul className = "container grid grid-cols-1 gap-y-12 sm:grid-cols-2 md:grid-cols-3 lg :grid-cols-5 " >
14
+ < ul className = "container grid grid-cols-2 gap-y-12 md:grid-cols-3 xl :grid-cols-6 " >
15
15
{ sponsors . map ( sponsor => (
16
16
< li key = { sponsor . handle } className = "flex flex-col items-center" >
17
17
< a href = { sponsor . url } className = "h-32 w-32 rounded-full" >
@@ -84,11 +84,16 @@ async function fetchSponsors(): Promise<Sponsors> {
84
84
// }
85
85
return [
86
86
{
87
- handle : 'YoannFleuryDev' ,
88
- name : 'Yoann Fleury' ,
89
- url : 'https://www.yoannfleury.dev/' ,
90
- img : 'https://pbs.twimg.com/profile_images/1594632934245498880/CJTKNRCO_400x400.jpg' ,
91
- title : 'Front end developer'
87
+ handle : 'vercel' ,
88
+ name : 'Vercel' ,
89
+ url : 'https://vercel.com/' ,
90
+ img : 'https://avatars.githubusercontent.com/u/14985020?v=4'
91
+ } ,
92
+ {
93
+ handle : 'ryanmagoon' ,
94
+ name : 'Ryan Magoon' ,
95
+ url : 'https://x.com/Ryan_Magoon' ,
96
+ img : 'https://avatars.githubusercontent.com/u/5327290?v=4'
92
97
} ,
93
98
{
94
99
handle : 'pontusab' ,
@@ -104,12 +109,6 @@ async function fetchSponsors(): Promise<Sponsors> {
104
109
</ >
105
110
)
106
111
} ,
107
- {
108
- handle : 'vercel' ,
109
- name : 'Vercel' ,
110
- url : 'https://vercel.com/' ,
111
- img : 'https://avatars.githubusercontent.com/u/14985020?v=4'
112
- } ,
113
112
{
114
113
handle : 'CarlLindesvard' ,
115
114
name : 'Carl Lindesvärd' ,
@@ -137,6 +136,13 @@ async function fetchSponsors(): Promise<Sponsors> {
137
136
</ a >
138
137
</ >
139
138
)
139
+ } ,
140
+ {
141
+ handle : 'YoannFleuryDev' ,
142
+ name : 'Yoann Fleury' ,
143
+ url : 'https://www.yoannfleury.dev/' ,
144
+ img : 'https://pbs.twimg.com/profile_images/1594632934245498880/CJTKNRCO_400x400.jpg' ,
145
+ title : 'Front end developer'
140
146
}
141
147
]
142
148
}
0 commit comments