Skip to content

Commit fd8a102

Browse files
committed
feat: Add resume/CV download links throughout website
- Added 'Download Resume' button in hero section (prominent placement) - Added 'Resume' link in navigation menu - Added Resume card in contact section with download link - Added btn-outline style for tertiary button styling - Resume hosted on Google Drive for easy access - All links open in new tab with proper security attributes
1 parent 6a24c76 commit fd8a102

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

css/style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,18 @@ ul {
338338
color: white;
339339
}
340340

341+
.btn-outline {
342+
background: transparent;
343+
color: var(--text-primary);
344+
border: 2px solid var(--border-color);
345+
}
346+
347+
.btn-outline:hover {
348+
background: var(--bg-secondary);
349+
border-color: var(--primary-color);
350+
color: var(--primary-color);
351+
}
352+
341353
.btn-large {
342354
padding: 1.125rem 2.5rem;
343355
font-size: 1.125rem;

index.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<li><a href="#expertise" class="nav-link">Expertise</a></li>
3131
<li><a href="#services" class="nav-link">Services</a></li>
3232
<li><a href="#portfolio" class="nav-link">Portfolio</a></li>
33+
<li><a href="https://drive.google.com/file/d/1pgg3SQ1IgJ6eISY6DCS5nzUAj0dEw4H2/view?usp=sharing" class="nav-link" target="_blank" rel="noopener noreferrer">Resume</a></li>
3334
<li><a href="#contact" class="nav-link cta-button">Contact</a></li>
3435
</ul>
3536
</div>
@@ -66,7 +67,8 @@ <h2 class="hero-subtitle">Senior Health Economist</h2>
6667
</div>
6768
<div class="hero-buttons">
6869
<a href="#contact" class="btn btn-primary">Get In Touch</a>
69-
<a href="#portfolio" class="btn btn-secondary">View Portfolio</a>
70+
<a href="https://drive.google.com/file/d/1pgg3SQ1IgJ6eISY6DCS5nzUAj0dEw4H2/view?usp=sharing" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">Download Resume</a>
71+
<a href="#portfolio" class="btn btn-outline">View Portfolio</a>
7072
</div>
7173
</div>
7274
<div class="hero-image">
@@ -654,6 +656,11 @@ <h3>Location</h3>
654656
<h3>LinkedIn</h3>
655657
<a href="https://www.linkedin.com/in/daniel-ribes/" target="_blank">Connect on LinkedIn</a>
656658
</div>
659+
<div class="contact-card">
660+
<div class="contact-icon">📄</div>
661+
<h3>Resume</h3>
662+
<a href="https://drive.google.com/file/d/1pgg3SQ1IgJ6eISY6DCS5nzUAj0dEw4H2/view?usp=sharing" target="_blank" rel="noopener noreferrer">Download CV</a>
663+
</div>
657664
</div>
658665
<div class="contact-cta">
659666
<h3>Ready to Collaborate?</h3>

0 commit comments

Comments
 (0)