@@ -11,44 +11,45 @@ const Skills = () => {
1111
1212 const skillCategories = [
1313 {
14- title : "Python / ML / DL " ,
15- icon : Code ,
16- color : "from-accent to-neon-blue " ,
17- borderColor : "border-accent " ,
14+ title : "Agentic AI & Orchestration " ,
15+ icon : Brain ,
16+ color : "from-neon-purple to-accent " ,
17+ borderColor : "border-neon-purple " ,
1818 skills : [
19- { name : "Python" , icon : Terminal } ,
20- { name : "Deep Learning" , icon : Brain } ,
21- { name : "NLP" , icon : FileCode } ,
22- { name : "Computer Vision" , icon : Cpu } ,
23- { name : "Data Visualization" , icon : Zap }
19+ { name : "AI Agents / RAG" , icon : Brain } ,
20+ { name : "LangGraph / CrewAI" , icon : Network } ,
21+ { name : "Multi-Agent Orchestration" , icon : Sparkles } ,
22+ { name : "Vector Databases" , icon : Database } ,
23+ { name : "Stateful Workflows" , icon : Code } ,
24+ { name : "Generative AI" , icon : Sparkles }
2425 ]
2526 } ,
2627 {
27- title : "Generative AI " ,
28- icon : Sparkles ,
28+ title : "Cloud & FinOps Architecture " ,
29+ icon : Cloud ,
2930 color : "from-neon-blue to-neon-purple" ,
3031 borderColor : "border-neon-blue" ,
3132 skills : [
32- { name : "Generative AI" , icon : Sparkles } ,
33- { name : "StableDiffusion" , icon : Brain } ,
34- { name : "PyTorch" , icon : Code } ,
35- { name : "CLIP" , icon : Network } ,
36- { name : "Prompt Engineering" , icon : Terminal } ,
37- { name : "RAG" , icon : Database } ,
38- { name : "GraphRAG" , icon : Network }
33+ { name : "FinOps (Cost Opt.)" , icon : Zap } ,
34+ { name : "AWS Architecture" , icon : Cloud } ,
35+ { name : "Kubernetes MLOps" , icon : Cpu } ,
36+ { name : "IaC (Terraform)" , icon : FileCode } ,
37+ { name : "Spot Instance Orchestration" , icon : Network } ,
38+ { name : "CI/CD for Data" , icon : Terminal }
3939 ]
4040 } ,
4141 {
42- title : "Tools / Cloud " ,
43- icon : Cloud ,
44- color : "from-neon-purple to-accent " ,
45- borderColor : "border-neon-purple " ,
42+ title : "Advanced Data & Modeling " ,
43+ icon : Code ,
44+ color : "from-accent to-neon-blue " ,
45+ borderColor : "border-accent " ,
4646 skills : [
47- { name : "AWS S3" , icon : Cloud } ,
48- { name : "AWS Redshift" , icon : Database } ,
49- { name : "AWS DynamoDB" , icon : Database } ,
50- { name : "Web Scraping" , icon : Code } ,
51- { name : "Big Data Analytics" , icon : Cpu }
47+ { name : "Stochastic Modeling" , icon : Brain } ,
48+ { name : "Bayesian Inference" , icon : Cpu } ,
49+ { name : "Computer Vision (Pose Est.)" , icon : Network } ,
50+ { name : "dbt (Data Governance)" , icon : Database } ,
51+ { name : "Data Observability" , icon : Zap } ,
52+ { name : "ELT Architecture" , icon : FileCode }
5253 ]
5354 }
5455 ] ;
@@ -177,7 +178,7 @@ const Skills = () => {
177178 >
178179 { [ ...Array ( 3 ) ] . map ( ( _ , repetition ) => (
179180 < div key = { repetition } className = "flex gap-6" >
180- { [ 'Python ' , 'PyTorch ' , 'TensorFlow ' , 'Generative AI ' , 'NLP ' , 'AWS ' , 'RAG ' , 'Deep Learning ' , 'Computer Vision ' , 'Big Data ' ] . map ( ( skill , idx ) => (
181+ { [ 'AI Agents ' , 'RAG ' , 'LangGraph ' , 'AWS Architecture ' , 'Kubernetes ' , 'FinOps ' , 'Terraform ' , 'Multi-Agent Systems ' , 'Vector DB ' , 'Bayesian Inference' , 'dbt' , 'MLOps '] . map ( ( skill , idx ) => (
181182 < div
182183 key = { idx }
183184 className = "flex-shrink-0 px-6 py-3 bg-gradient-to-r from-accent/20 to-neon-blue/20 border border-accent/30 rounded-full"
0 commit comments