diff --git a/app/page.tsx b/app/page.tsx index e3b71e6..3dbf499 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -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 ( diff --git a/components/ExperienceTimeline.tsx b/components/ExperienceTimeline.tsx index cf29081..e28a24b 100644 --- a/components/ExperienceTimeline.tsx +++ b/components/ExperienceTimeline.tsx @@ -14,15 +14,15 @@ const colors = [ const skills = [ ['LangGraph', 'Temporal', 'LLM Ops', 'PyTorch', 'Kafka', 'Observability', 'Go-Flink'], ['Golang', 'Terraform', 'IaC', 'OpenShift', 'Docker', 'Distributed Systems', 'Grafana'], - ['AWS', 'Java', 'gRPC', 'Distributed Systems', 'DynamoDB', 'CloudWatch'], - ['Machine Learning', 'Golang', 'Anomaly Detection', 'C++', 'CMake', 'Data Security'], - ['Django', 'React', 'Agile', 'Web Development', 'Sonar', 'ATC Systems'], + ['Java', 'AWS', 'DynamoDB', 'CloudWatch', 'gRPC', 'Distributed Systems', 'Ownership', 'Disaster Recovery', 'Observability'], + ['C++', 'CMake', 'Golang', 'Docker'], + ['ReactJS', 'Django', 'Agile', 'Sonar'], ] const links = [ null, '#project-rbc', // RBC - link to RBC project showcase - null, + '#project-aws', // AWS - link to AWS project showcase null, 'https://plan.navcanada.ca/account/login/?next=/', ] @@ -30,7 +30,7 @@ const links = [ const linkTexts = [ '', 'Learn more →', - '', + 'Learn more →', '', 'View Product →', ] diff --git a/components/ProjectShowcase.tsx b/components/ProjectShowcase.tsx index 4d55321..fbb2663 100644 --- a/components/ProjectShowcase.tsx +++ b/components/ProjectShowcase.tsx @@ -107,7 +107,7 @@ export function ProjectShowcase({