Skip to content

Commit 6de2905

Browse files
authored
Merge pull request #31 from MickyMik/dev
change on resume url
2 parents 3994205 + 1f0310b commit 6de2905

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/FloatingDownload.tsx

Lines changed: 1 addition & 1 deletion
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 = '/resume/CV_METINHOUE_FR.pdf'; // Replace with actual resume PDF URL
22+
link.href = 'https://github.com/MickyMik/ditems-data-craft/tree/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();

src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const Header = () => {
6363
</nav>
6464

6565
<div className="flex items-center space-x-4">
66-
<a href="/resume/CV_METINHOUE_FR.pdf" download target="_blank" rel="noopener noreferrer">
66+
<a href="https://github.com/MickyMik/ditems-data-craft/tree/main/resume/CV_METINHOUE_FR.pdf" download target="_blank" rel="noopener noreferrer">
6767
<Button variant="download" size="sm" className="hidden md:flex">
6868
<Download className="w-4 h-4" />
6969
Resume

0 commit comments

Comments
 (0)