projects.ts
1// GDG on Campus Projects ๐ก
2
3const projects = {
4 categories: ["Web", "Mobile", "AI", "Cloud"],
5 opensource: true,
6 learning: true,
7 teamwork: true,
8};
9
10const createProject = (name, tech) =>
11 console.log(`โจ Project "${name}" built with ${tech} is live!`);
12
13createProject("You", "Your Ideas");
14
15// Build, deploy & showcase your skills ๐
16// Turn your ideas into reality with our community!Loading projects...
