Skip to content

Commit

Permalink
added contribution list
Browse files Browse the repository at this point in the history
Signed-off-by: Ratan Gulati <[email protected]>
  • Loading branch information
Ratangulati committed Jul 2, 2024
1 parent fc63af2 commit 42303fc
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"homepage": "https://ratangulati.github.io/Portfolio",
"name": "portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://ratangulati.github.io/Portfolio/",
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
14 changes: 13 additions & 1 deletion src/components/Experience.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,18 @@ const Experience = () => {
</li>
))}
</ul>
{experience.showContributionsLink && ( // Conditionally render the link based on a flag
<div className="mt-4">
<a
href={experience.contributionsLink}
target="_blank"
rel="noopener noreferrer"
className="text-blue-500 hover:underline"
>
See contributions
</a>
</div>
)}
</VerticalTimelineElement>
))}
</VerticalTimeline>
Expand All @@ -53,4 +65,4 @@ const Experience = () => {
)
}

export default Experience;
export default Experience;
11 changes: 7 additions & 4 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export const services = [
'Implemented effective workflows and automation, resulting in more efficient and reliable project development.'
],
'url': 'https://gssoc.girlscript.tech/',
'showContributionsLink': true,
'contributionsLink': 'https://nosy-heaven-3bd.notion.site/GSSOC-be6bc7a97f814e33930a279c9f476fcc'
},
{
'company': 'Code Social',
Expand All @@ -48,12 +50,13 @@ export const services = [
'duration': 'Oct 2023 - Oct 2023',
'logo': 'https://pbs.twimg.com/profile_images/1697628838983778304/tz9etEGO_400x400.jpg',
'points': [
'Hacktoberfest contributed in the beginning of my Open Source Journey.',
'Designed and implemented engaging contests to boost community participation and enthusiasm.',
'Facilitated collaborations between community members, helping to build connections.',
'Built and maintained strong, positive relationships with community members, fostering a collaborative and supportive environment.'
'Started my journey in open source during Hacktoberfest, gaining initial experience in collaborative coding.',
'Created clear guides and practical examples for ArgoCD, helping users understand and use the platform effectively.',
'Managed code versions using Git, ensuring smooth integration of changes and maintaining project consistency.'
],
'url': 'https://hacktoberfest.com/',
'showContributionsLink': true,
'contributionsLink': 'https://brick-manicure-182.notion.site/Hacktoberfest-2023-495439c489d44fa482afa3ffba5a415a'
},
];

Expand Down

0 comments on commit 42303fc

Please sign in to comment.