We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 963917d commit 7ea36d6Copy full SHA for 7ea36d6
3 files changed
my-app/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "my-app",
3
- "version": "1.0.1",
+ "version": "1.1.1",
4
"private": true,
5
"dependencies": {
6
"@emotion/react": "^11.14.0",
my-app/public/cv_2025.pdf
91 KB
my-app/src/modules/contact/components/contactDescription.tsx
@@ -74,7 +74,18 @@ const ContactDescription = (props: ContactDescriptionProps) => {
74
onIconClicked={onMediumClicked}
75
/> */}
76
</div>
77
+
78
<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>
89
</motion.div>
90
);
91
};
0 commit comments