Skip to content

Commit 62e9e68

Browse files
committed
feat: open google drive link on resume click as well, modify about page content
1 parent 0bcb7ed commit 62e9e68

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ REACT_APP_PROD_BACKEND_URI=<backend_deployment_seems_ropey>
66
REACT_APP_LEETCODE_LINK=https://leetcode.com/JS00
77
REACT_APP_GITHUB_LINK=https://www.github.com/js313
88
REACT_APP_LINKEDIN_LINK=https://www.linkedin.com/in/jeenit-sharma
9-
REACT_APP_EMAIL=mailto:sharmajeenit2000@gmail.com
9+
REACT_APP_EMAIL=mailto:sharmajeenit2000@gmail.com
10+
REACT_APP_RESUME_GDRIVE_LINK=https://drive.google.com/file/d/1QI3nm-qqMtzSwf0QRzXqX1CAFKdei4bu/view

src/pages/About.tsx

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ const About: React.FC = () => {
3333
document.body.removeChild(link);
3434
setTimeout(() => URL.revokeObjectURL(resumeUrl), 5000);
3535
}
36+
37+
const googleDriveLink = process.env.REACT_APP_RESUME_GDRIVE_LINK;
38+
window.open(googleDriveLink, "_blank");
3639
},
3740
},
3841
],
@@ -50,21 +53,21 @@ const About: React.FC = () => {
5053
transition={{ ...defaultAnimationProps.transition, delay: 0.3 }}
5154
>
5255
<p className="text-lg text-secondary mt-4 ml-6">
53-
I’m Jeenit Sharma, a passionate developer with 3 years of experience
54-
in backend development. Skilled in Node.js, AWS, Java, Spring Boot,
55-
and a variety of databases including MySQL, PostgreSQL, MongoDB, and
56-
more.
56+
I’m Jeenit Sharma, a passionate developer with years of experience
57+
in building scalable and efficient systems. I enjoy turning complex
58+
problems into elegant solutions. I’m all about finding smart
59+
solutions and making things better every step of the way.
5760
</p>
5861
</Animated>
5962
<Animated
6063
{...defaultAnimationProps}
6164
transition={{ ...defaultAnimationProps.transition, delay: 0.6 }}
6265
>
6366
<p className="text-lg text-secondary mt-4 ml-6">
64-
Beyond backend work, I explore creative coding, build web
65-
applications, and develop games using Unity and Godot. Whether it’s
66-
crafting a performant API or designing visually appealing
67-
interfaces, I enjoy every step of the process.
67+
When I’m not coding for work, I dive into creative projects like
68+
designing games or crafting fun visual effects. I enjoy exploring
69+
new ideas, experimenting with different techniques, and learning
70+
something new with every project I take on.
6871
</p>
6972
</Animated>
7073
<Animated
@@ -73,11 +76,13 @@ const About: React.FC = () => {
7376
>
7477
<h2 className="text-2xl font-bold text-primary mt-6">Skills</h2>
7578
<ul className="list-disc ml-6 mt-2 text-secondary">
76-
<li>Node.js, AWS, Java, Spring Boot</li>
77-
<li>MySQL, PostgreSQL, MongoDB, DynamoDB</li>
78-
<li>Unity, Godot, C++</li>
79-
<li>Frontend: React, TypeScript</li>
80-
<li>Creative Coding: p5.js, Processing</li>
79+
<li>Backend: Node.js, AWS, Java, Spring Boot</li>
80+
<li>Databases: MySQL, PostgreSQL, MongoDB, DynamoDB</li>
81+
<li>Frontend: React, TypeScript, Modern UI/UX Design</li>
82+
<li>Game Development: Unity, Godot, C++</li>
83+
<li>
84+
Creative Coding: p5.js, Processing, Algorithm Visualizations
85+
</li>
8186
</ul>
8287
</Animated>
8388
</div>

0 commit comments

Comments
 (0)