You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Master full-stack web development with modern technologies",
231
+
description: "Master full-stack development with modern frameworks like React, Node.js, and databases. Build responsive, interactive web applications.",
232
232
icon: "🖥️",
233
-
color: "#3b82f6"
233
+
color: "#4f46e5"
234
234
},
235
235
{
236
236
title: "Data Science",
237
-
description: "Dive into data analysis, visualization, and machine learning",
237
+
description: "Learn data analysis, visualization, and machine learning with Python, Pandas, and TensorFlow. Turn data into actionable insights.",
238
238
icon: "📊",
239
239
color: "#8b5cf6"
240
240
},
241
241
{
242
242
title: "Mobile Apps",
243
-
description: "Build cross-platform mobile applications with React Native",
243
+
description: "Create beautiful, performant cross-platform mobile applications using React Native and modern mobile development practices.",
244
244
icon: "📱",
245
245
color: "#10b981"
246
246
},
247
247
{
248
248
title: "DevOps",
249
-
description: "Learn CI/CD, Docker, Kubernetes, and cloud deployment",
249
+
description: "Master CI/CD, Docker, Kubernetes, and cloud deployment to build scalable, reliable infrastructure and deployment pipelines.",
250
250
icon: "⚙️",
251
251
color: "#f59e0b"
252
252
}
@@ -354,36 +354,81 @@ function StatCard({ value, label, index = 0 }: StatCardProps) {
354
354
);
355
355
}
356
356
357
-
functionLearningPath({ title, description, icon, color }: LearningPathProps){
358
-
consticonStyle={
359
-
backgroundColor: `${color}10`,
360
-
color: color
361
-
};
362
-
357
+
constLearningPath=({ title, description, icon, color, index }: LearningPathProps&{index: number})=>{
358
+
constisEven=index%2===0;
359
+
constdelay=index*0.15;
360
+
361
+
// Calculate position based on index
362
+
consttopPosition=100+(index*250);// 250px spacing between cards
0 commit comments