|
| 1 | +const contributions = [ |
| 2 | + { |
| 3 | + name: 'GitHub Desktop - Critical Feature Implementation', |
| 4 | + description: 'Successfully implemented two critical features for GitHub Desktop in 2021, contributing to the open-source community.', |
| 5 | + year: '2021', |
| 6 | + link: 'https://github.com/desktop/desktop', |
| 7 | + type: 'Open Source Contribution', |
| 8 | + }, |
| 9 | + { |
| 10 | + name: 'Overwatch - Network Monitoring Tool', |
| 11 | + description: 'Network monitoring and analysis tool for developers.', |
| 12 | + year: '2024', |
| 13 | + link: 'https://github.com/maifeeulasad/Overwatch', |
| 14 | + type: 'Open Source Project', |
| 15 | + }, |
| 16 | + { |
| 17 | + name: 'MLauncher - Application Launcher', |
| 18 | + description: 'Efficient application launcher for improved productivity.', |
| 19 | + year: '2024', |
| 20 | + link: 'https://github.com/maifeeulasad/MLauncher', |
| 21 | + type: 'Open Source Project', |
| 22 | + }, |
| 23 | + { |
| 24 | + name: 'Network React - Networking Library', |
| 25 | + description: 'React library for network operations and management.', |
| 26 | + year: '2023', |
| 27 | + link: 'https://github.com/maifeeulasad/network-react', |
| 28 | + type: 'Open Source Library', |
| 29 | + }, |
| 30 | +]; |
| 31 | + |
| 32 | +const Patents = () => { |
| 33 | + return ( |
| 34 | + <section className="bg-black text-white py-20"> |
| 35 | + <div className="max-w-7xl mx-auto px-6"> |
| 36 | + <div className="mb-16"> |
| 37 | + <div className="flex items-center gap-6 mb-4"> |
| 38 | + <h2 className="text-2xl font-medium text-white uppercase tracking-wider">OPEN SOURCE CONTRIBUTIONS</h2> |
| 39 | + </div> |
| 40 | + <div className="border-b border-gray-600 pb-4"></div> |
| 41 | + </div> |
| 42 | + |
| 43 | + <div className="space-y-16"> |
| 44 | + {contributions.map((contribution, index) => ( |
| 45 | + <div key={index} className="space-y-4"> |
| 46 | + <div className="flex justify-between items-start"> |
| 47 | + <div className="flex-1"> |
| 48 | + <a |
| 49 | + href={contribution.link} |
| 50 | + target="_blank" |
| 51 | + rel="noopener noreferrer" |
| 52 | + className="text-xl md:text-2xl lg:text-3xl font-light text-white leading-tight hover:text-gray-300 transition-colors cursor-pointer block" |
| 53 | + > |
| 54 | + {contribution.name} |
| 55 | + </a> |
| 56 | + <p className="text-gray-400 text-base mt-1 leading-tight"> |
| 57 | + {contribution.description} |
| 58 | + </p> |
| 59 | + <p className="text-gray-500 text-sm mt-1">{contribution.type}</p> |
| 60 | + </div> |
| 61 | + <div className="text-right ml-8"> |
| 62 | + <div className="text-xl md:text-2xl font-light text-white">{contribution.year}</div> |
| 63 | + </div> |
| 64 | + </div> |
| 65 | + {index < contributions.length - 1 && <div className="h-px bg-gray-800 mt-16"></div>} |
| 66 | + </div> |
| 67 | + ))} |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + </section> |
| 71 | + ); |
| 72 | +}; |
| 73 | + |
| 74 | +export default Patents; |
0 commit comments