File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -224,16 +224,16 @@ const HomePage = ({
224
224
</ div >
225
225
226
226
{ /* Use Cases - A new way to use the internet */ }
227
- < Section
227
+ < section
228
228
className = { cn (
229
- "max-lg:-mx-4 max-lg:w-[100vw] max-lg:overflow-hidden max-lg:px-4 sm:max-lg:-mx-6 sm:max-lg:px-6" , // Mobile: Swiper cards
229
+ "max-lg:-mx-4 max-lg:flex max-lg: w-[100vw] max-lg:flex-col max-lg:overflow-hidden max-lg:px-4 sm:max-lg:-mx-6 sm:max-lg:px-6" , // Mobile: Swiper cards
230
230
"lg:grid lg:grid-cols-bento lg:gap-4" // Desktop: BentoBox grid
231
231
) }
232
232
>
233
233
< div
234
234
className = { cn (
235
235
"flex flex-col" ,
236
- "lg:col-span-12 lg:flex xl:col-span-3 xl:col-start-2"
236
+ "lg:col-span-12 xl:col-span-3 xl:col-start-2"
237
237
) }
238
238
>
239
239
< div className = "w-fit rounded-full bg-primary-low-contrast px-4 py-0 text-sm uppercase text-primary" >
@@ -253,12 +253,12 @@ const HomePage = ({
253
253
"[&_.swiper]:mx-auto [&_.swiper]:mt-4 [&_.swiper]:!flex [&_.swiper]:h-fit [&_.swiper]:max-w-128 [&_.swiper]:flex-col [&_.swiper]:items-center"
254
254
) }
255
255
>
256
- { bentoItems . map ( ( item ) => (
256
+ { bentoItems . map ( ( { className , ... item } ) => (
257
257
< BentoCard
258
258
key = { item . title }
259
259
imgHeight = { 220 }
260
260
{ ...item }
261
- className = { cn ( item . className , "bg-background text-body" ) }
261
+ className = { cn ( className , "bg-background text-body" ) }
262
262
imgWidth = { undefined } // Intentionally last to override box
263
263
/>
264
264
) ) }
@@ -272,7 +272,7 @@ const HomePage = ({
272
272
className = { cn ( className , "max-lg:hidden" ) } // Desktop only
273
273
/>
274
274
) ) }
275
- </ Section >
275
+ </ section >
276
276
277
277
{ /* Activity - The strongest ecosystem */ }
278
278
< Section >
You can’t perform that action at this time.
0 commit comments