Skip to content

Commit 7ea36d6

Browse files
feat: implement download cv feature
1 parent 963917d commit 7ea36d6

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

my-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "my-app",
3-
"version": "1.0.1",
3+
"version": "1.1.1",
44
"private": true,
55
"dependencies": {
66
"@emotion/react": "^11.14.0",

my-app/public/cv_2025.pdf

91 KB
Binary file not shown.

my-app/src/modules/contact/components/contactDescription.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,18 @@ const ContactDescription = (props: ContactDescriptionProps) => {
7474
onIconClicked={onMediumClicked}
7575
/> */}
7676
</div>
77+
7778
<p className="w-full">I look forward to hearing from you.</p>
79+
80+
<a href="/cv_2025.pdf" download="CV_VITTI_NG.pdf">
81+
<button
82+
className={`mt-8 p-3 border rounded-md hover:scale-125 transition-transform duration-300 ${
83+
isThemeLight ? "text-black border-black" : "text-white border-white"
84+
}`}
85+
>
86+
Download CV
87+
</button>
88+
</a>
7889
</motion.div>
7990
);
8091
};

0 commit comments

Comments
 (0)