Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/Dan_Hecker_Resume.pdf
Binary file not shown.
11 changes: 11 additions & 0 deletions src/components/Header.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,17 @@
box-shadow: var(--shadow-md);
}

.contact-links .download-btn {
background: rgba(255, 255, 255, 0.3);
border: 2px solid rgba(255, 255, 255, 0.8);
}

.contact-links .download-btn:hover {
background: rgba(255, 255, 255, 0.5);
border-color: white;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
.header-content {
flex-direction: column;
Expand Down
4 changes: 3 additions & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ interface HeaderProps {

const Header: React.FC<HeaderProps> = ({ isDarkMode, onToggleDarkMode }) => {
return (
<>
{/* Dark mode toggle positioned in top right corner */}
<DarkModeToggle isDarkMode={isDarkMode} onToggle={onToggleDarkMode} />
<header className="header">
Expand All @@ -29,6 +28,9 @@ const Header: React.FC<HeaderProps> = ({ isDarkMode, onToggleDarkMode }) => {
<a href="mailto:danjhecker@gmail.com">
Contact
</a>
<a href="/Dan_Hecker_Resume.pdf" download className="download-btn">
Download PDF
</a>
</div>
</div>
</div>
Expand Down