Skip to content

Commit 6dda62e

Browse files
authored
Merge pull request #13 from MickyMik/dev
Update FloatingDownload.tsx
2 parents f6f9769 + 066a6ca commit 6dda62e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/FloatingDownload.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const FloatingDownload = () => {
1919
// In a real application, this would trigger the actual file download
2020
// For now, we'll create a dummy PDF download
2121
const link = document.createElement('a');
22-
link.href = '#'; // Replace with actual resume PDF URL
22+
link.href = 'https://github.com/MickyMik/ditems-data-craft/blob/main/resume/CV_METINHOUE_FR.pdf'; // Replace with actual resume PDF URL
2323
link.download = 'Ditems_Data_Engineer_Resume.pdf';
2424
document.body.appendChild(link);
2525
link.click();
@@ -43,4 +43,4 @@ const FloatingDownload = () => {
4343
);
4444
};
4545

46-
export default FloatingDownload;
46+
export default FloatingDownload;

0 commit comments

Comments
 (0)