Skip to content

Commit 0c822c0

Browse files
committed
Update work button type
1 parent fbf091e commit 0c822c0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/ui/work-table.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const works = [
113113
href: 'https://year-in-code.com'
114114
},
115115
secondaryLink: {
116-
label: 'Technical report',
116+
label: 'Read technical report',
117117
href: '/blog/personalized-video-at-scale'
118118
}
119119
},
@@ -171,7 +171,7 @@ const works = [
171171
category: 'Client',
172172
link: {
173173
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'
175175
},
176176
quote: 'Iterating toward production-ready agents.'
177177
},
@@ -244,16 +244,16 @@ export const WorkTable = () => {
244244
{work.description ? <div>{work.description}</div> : null}
245245
<div className="grow" />
246246
<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}
252247
{work.link && typeof work.link === 'object' ? (
253248
<Link href={work.link.href}>
254249
<Button variant="default">{work.link.label}</Button>
255250
</Link>
256251
) : 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}
257257
</div>
258258
</div>
259259
<div className="relative flex h-full w-full flex-col items-center justify-center">

0 commit comments

Comments
 (0)