+ {[
+ {
+ icon: Users,
+ title: "Join Communities",
+ description: "Connect with like-minded developers in communities focused on specific technologies and interests. Share knowledge, collaborate on projects, and build lasting professional relationships.",
+ color: "cyan",
+ features: [
+ "Technology-specific groups",
+ "Private and public communities",
+ "Community moderation tools",
+ "Member rankings and badges"
+ ]
+ },
+ {
+ icon: MessageSquare,
+ title: "Real-time Chat",
+ description: "Instant messaging, voice channels, and collaborative coding sessions. Stay connected with your team and community members in real-time.",
+ color: "blue",
+ features: [
+ "Direct messaging",
+ "Group conversations",
+ "File sharing",
+ "Code snippet formatting"
+ ]
+ },
+ {
+ icon: Code2,
+ title: "Share & Learn",
+ description: "Post code snippets, ask questions, and learn from experienced developers. Get feedback on your code and help others grow.",
+ color: "purple",
+ features: [
+ "Syntax-highlighted code blocks",
+ "Q&A discussions",
+ "Tutorial sharing",
+ "Code reviews"
+ ]
+ },
+ {
+ icon: Zap,
+ title: "Discover Events",
+ description: "Find hackathons, meetups, and tech events to expand your network. Stay updated with the latest tech events in your area and beyond.",
+ color: "emerald",
+ features: [
+ "Local and virtual events",
+ "RSVP and calendar integration",
+ "Event notifications",
+ "Post-event networking"
+ ]
+ },
+ {
+ icon: Rocket,
+ title: "Build Projects",
+ description: "Collaborate on open source projects and bring your ideas to life. Find team members, showcase your work, and contribute to the community.",
+ color: "orange",
+ features: [
+ "Project showcases",
+ "Collaboration tools",
+ "Git integration",
+ "Project roadmaps"
+ ]
+ },
+ {
+ icon: Globe,
+ title: "Global Network",
+ description: "Connect with developers worldwide and build a diverse professional network. Learn from different perspectives and expand your horizons.",
+ color: "pink",
+ features: [
+ "International community",
+ "Multi-language support",
+ "Time zone friendly",
+ "Cultural exchange programs"
+ ]
+ }
+ ].map((feature, index) => {
+ const Icon = feature.icon;
+ const colorClasses: Record
= {
+ cyan: "from-cyan-500/20 to-cyan-600/10 text-cyan-400",
+ blue: "from-blue-500/20 to-blue-600/10 text-blue-400",
+ purple: "from-purple-500/20 to-purple-600/10 text-purple-400",
+ emerald: "from-emerald-500/20 to-emerald-600/10 text-emerald-400",
+ orange: "from-orange-500/20 to-orange-600/10 text-orange-400",
+ pink: "from-pink-500/20 to-pink-600/10 text-pink-400"
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ {feature.title}
+
+
+
+ {feature.description}
+
+
+
+
+ {feature.features.map((item, i) => (
+ -
+
+ {item}
+
+ ))}
+
+
+
+ );
+ })}
+