Skip to content

Commit

Permalink
Add Devfolio button and update version to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
upayanmazumder committed Nov 2, 2024
1 parent 2e40a76 commit 4ce63c2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "upayan.space",
"version": "2.1.1",
"version": "2.1.2",
"description": "My Portfolio Site",
"main": "api/server.js",
"dependencies": {
Expand Down
5 changes: 5 additions & 0 deletions qwik/src/components/social-media/work/work.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ button.gravatar-button {
font-family: 'Red Hat Display';
}

button.devfolio-button {
background-color: #3670ff;
font-family: 'Red Hat Display';
}

@media (max-width: 1200px) {
.button-group a {
width: 45px;
Expand Down
2 changes: 1 addition & 1 deletion qwik/src/components/social-media/work/work.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default component$(() => {
);

const filteredButtonDetails = buttonDetails.filter(button =>
["IIT-Madras", "Leetcode", "Microsoft Learn", "Gravatar"].includes(button.name)
["IIT-Madras", "Leetcode", "Microsoft Learn", "Gravatar", "Devfolio"].includes(button.name)
);

return (
Expand Down
5 changes: 5 additions & 0 deletions qwik/src/data/links.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,10 @@
"class": "pinterest-button",
"name": "Pinterest",
"link": "https://in.pinterest.com/upayanmazumder/"
},
{
"class": "devfolio-button",
"name": "Devfolio",
"link": "https://devfolio.co/@Upayan"
}
]

0 comments on commit 4ce63c2

Please sign in to comment.