feat: update experience descriptions for Titus, NAV Canada, and homelab

This commit is contained in:
Story Crater Bot
2026-08-31 17:31:07 -07:00
parent 85cb85102e
commit fd6590e461
4 changed files with 83 additions and 65 deletions
+11 -7
View File
@@ -15,19 +15,23 @@ export default function Home() {
const projects = t.projects.items.map((item, index) => ({
...item,
id: index === 1 ? 'project-rbc' : undefined,
status: index === 1
id: index === 3
? 'project-rbc'
: index === 4
? 'project-aws'
: undefined,
status: index === 3
? 'completed' as const
: index === 5
? 'building' as const
: 'live' as const,
media: index === 0
? { type: 'video' as const, url: 'https://www.youtube.com/watch?v=wdJ5DN15jus' }
: index === 1
? { type: 'image' as const, url: '/rbc-images.jpeg' }
media: index === 3
? { type: 'image' as const, url: '/rbc-images.jpeg' }
: index === 4
? { type: 'video' as const, url: 'https://www.youtube.com/watch?v=wdJ5DN15jus' }
: undefined,
videoUrl: index === 5 ? 'https://github.com/rockliang/go-flink' : '#',
articleUrl: index === 0 ? 'https://lnkd.in/p/gm2PZkWw' : '#',
articleUrl: index === 4 ? 'https://lnkd.in/p/gm2PZkWw' : '#',
}))
return (