We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6f9769 + 066a6ca commit 6dda62eCopy full SHA for 6dda62e
src/components/FloatingDownload.tsx
@@ -19,7 +19,7 @@ const FloatingDownload = () => {
19
// In a real application, this would trigger the actual file download
20
// For now, we'll create a dummy PDF download
21
const link = document.createElement('a');
22
- link.href = '#'; // Replace with actual resume PDF URL
+ link.href = 'https://github.com/MickyMik/ditems-data-craft/blob/main/resume/CV_METINHOUE_FR.pdf'; // Replace with actual resume PDF URL
23
link.download = 'Ditems_Data_Engineer_Resume.pdf';
24
document.body.appendChild(link);
25
link.click();
@@ -43,4 +43,4 @@ const FloatingDownload = () => {
43
);
44
};
45
46
-export default FloatingDownload;
+export default FloatingDownload;
0 commit comments