feat: update experience descriptions for Titus, NAV Canada, and homelab
This commit is contained in:
+11
-7
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user