@@ -113,7 +113,7 @@ const works = [
113
113
href : 'https://year-in-code.com'
114
114
} ,
115
115
secondaryLink : {
116
- label : 'Technical report' ,
116
+ label : 'Read technical report' ,
117
117
href : '/blog/personalized-video-at-scale'
118
118
}
119
119
} ,
@@ -171,7 +171,7 @@ const works = [
171
171
category : 'Client' ,
172
172
link : {
173
173
href : 'https://cal.com/blog/don-t-forget-about-cal-ai-your-24-7-scheduling-assistant' ,
174
- label : 'Technical report'
174
+ label : 'Read technical report'
175
175
} ,
176
176
quote : 'Iterating toward production-ready agents.'
177
177
} ,
@@ -244,16 +244,16 @@ export const WorkTable = () => {
244
244
{ work . description ? < div > { work . description } </ div > : null }
245
245
< div className = "grow" />
246
246
< div className = "flex items-center gap-2" >
247
- { work . secondaryLink && typeof work . secondaryLink === 'object' ? (
248
- < Link href = { work . secondaryLink . href } >
249
- < Button variant = "outline" > { work . secondaryLink . label } </ Button >
250
- </ Link >
251
- ) : null }
252
247
{ work . link && typeof work . link === 'object' ? (
253
248
< Link href = { work . link . href } >
254
249
< Button variant = "default" > { work . link . label } </ Button >
255
250
</ Link >
256
251
) : null }
252
+ { work . secondaryLink && typeof work . secondaryLink === 'object' ? (
253
+ < Link href = { work . secondaryLink . href } >
254
+ < Button variant = "ghost" > { work . secondaryLink . label } </ Button >
255
+ </ Link >
256
+ ) : null }
257
257
</ div >
258
258
</ div >
259
259
< div className = "relative flex h-full w-full flex-col items-center justify-center" >
0 commit comments