@@ -68,10 +68,10 @@ const works = [
68
68
'We built a platform to make an AI-directed video out of your GitHub activity. It was used by thousands of devs, which caused it to crash, so we parallelized the rendering engine and dynamically down-rezzed on mobile to scale.' ,
69
69
backgroundImageUrl : '/images/graphite.png' ,
70
70
image : (
71
- < div className = "flex w-full flex-col gap-2" >
71
+ < div className = "flex h-full w-full flex-col justify-center gap-2" >
72
72
< div className = "mr-auto rounded-custom bg-background px-2 py-1" > enter your github username</ div >
73
73
< div className = "ml-auto rounded-custom bg-background px-2 py-1" > @carmenlala</ div >
74
- < div className = "flex flex-col gap-4 rounded-custom bg-background p-4" >
74
+ < div className = "flex w-full flex-col gap-4 rounded-custom bg-background p-4" >
75
75
< div className = "grid w-full grid-flow-col grid-rows-7 gap-1 overflow-hidden" >
76
76
{ Array . from ( { length : 7 * 52 } ) . map ( ( _ , index ) => (
77
77
< div
@@ -133,7 +133,7 @@ const works = [
133
133
name : 'Cal.com' ,
134
134
description : 'We built an early version of Cal.ai, one of the first AI agents to go to market.' ,
135
135
image : (
136
- < div className = "flex w-full flex-col gap-2 text-left " >
136
+ < div className = "flex h-full w-full flex-col gap-2" >
137
137
< div className = "mr-auto flex flex-col rounded-custom bg-background p-4" >
138
138
139
139
< p className = "opacity-70" > to: Cal.ai</ p >
@@ -220,15 +220,15 @@ export const WorkTable = () => {
220
220
< div
221
221
key = { index }
222
222
id = { `work-${ work . name } ` }
223
- className = { `group h-fit w-full space-y-4 rounded-custom border p-4 px-6 text-secondary transition-colors duration-500 ${
223
+ className = { `group h-fit w-full space-y-4 rounded-custom border text-secondary transition-colors duration-500 sm:p-4 sm:px-6 ${
224
224
highlightedWork === work . name ? 'border-primary' : 'border-primary/0'
225
225
} `}
226
226
>
227
227
< div className = "flex justify-between" >
228
228
< h3 className = "text-primary" > { work . name } </ h3 >
229
229
< div > { work . date } </ div >
230
230
</ div >
231
- < div className = "grid gap-6 md:grid-cols-2" >
231
+ < div className = "grid grid-cols-1 gap-6 md:grid-cols-2" >
232
232
< div className = "flex w-full flex-col gap-4" >
233
233
{ work . quote ? (
234
234
< div className = "text-5xl text-primary leading-12 tracking-tight" > { work . quote } </ div >
@@ -248,21 +248,13 @@ export const WorkTable = () => {
248
248
) : null }
249
249
</ div >
250
250
</ div >
251
- < div
252
- className = { cn ( 'relative h-fit w-full space-y-4 text-right' , {
253
- 'aspect-square' : work . image
254
- } ) }
255
- >
256
- { work . image ? (
257
- < div className = "absolute top-0 left-0 z-10 flex h-full w-full items-center justify-center p-4" >
258
- { work . image }
259
- </ div >
260
- ) : null }
251
+ < div className = "relative flex h-full w-full flex-col items-center justify-center" >
252
+ { work . image ? < div className = "z-10 h-full w-full shrink-0 p-4" > { work . image } </ div > : null }
261
253
{ work . backgroundImageUrl ? (
262
254
< CustomImage
263
255
src = { work . backgroundImageUrl }
264
256
alt = { work . name }
265
- className = "absolute top-0 h-full w-full object-cover saturate-[1.25] dark:saturate-[0.75]"
257
+ className = "absolute top-0 left-0 w-full object-cover saturate-[1.25] dark:saturate-[0.75]"
266
258
/>
267
259
) : null }
268
260
</ div >
0 commit comments