Skip to content

Commit 4497ee3

Browse files
committed
feat: Add prominent GitHub profile links throughout website
- Add GitHub link to navigation menu for easy access - Replace 'View Portfolio' button with 'GitHub Projects' button in hero section - Add prominent GitHub callout box in portfolio section with description - Add GitHub contact card in contact section with 'View Portfolio Projects' link - Style GitHub callout with gradient background, hover effects, and glassmorphism - Highlight GitHub as primary location for code repositories and projects - Position GitHub alongside LinkedIn, Resume, and other key contact methods
1 parent b7673d1 commit 4497ee3

2 files changed

Lines changed: 89 additions & 2 deletions

File tree

css/style.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,6 +1306,77 @@ ul {
13061306
pointer-events: none;
13071307
}
13081308

1309+
/* GitHub Callout Box */
1310+
.github-callout {
1311+
display: flex;
1312+
align-items: center;
1313+
gap: 2rem;
1314+
background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
1315+
backdrop-filter: blur(10px);
1316+
padding: 2.5rem;
1317+
border-radius: var(--radius-xl);
1318+
margin-bottom: 3rem;
1319+
border: 2px solid rgba(102, 126, 234, 0.3);
1320+
box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
1321+
transition: all var(--transition-normal);
1322+
position: relative;
1323+
z-index: 1;
1324+
}
1325+
1326+
.github-callout:hover {
1327+
transform: translateY(-5px);
1328+
box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
1329+
border-color: rgba(102, 126, 234, 0.5);
1330+
}
1331+
1332+
.github-icon {
1333+
font-size: 4rem;
1334+
flex-shrink: 0;
1335+
background: var(--gradient-primary);
1336+
-webkit-background-clip: text;
1337+
-webkit-text-fill-color: transparent;
1338+
background-clip: text;
1339+
text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
1340+
}
1341+
1342+
.github-content {
1343+
flex: 1;
1344+
}
1345+
1346+
.github-content h3 {
1347+
font-size: 1.75rem;
1348+
margin-bottom: 1rem;
1349+
background: var(--gradient-primary);
1350+
-webkit-background-clip: text;
1351+
-webkit-text-fill-color: transparent;
1352+
background-clip: text;
1353+
}
1354+
1355+
.github-content p {
1356+
font-size: 1.125rem;
1357+
color: var(--text-secondary);
1358+
margin-bottom: 1.5rem;
1359+
line-height: 1.7;
1360+
}
1361+
1362+
.btn-github {
1363+
display: inline-block;
1364+
padding: 1rem 2.5rem;
1365+
background: var(--gradient-primary);
1366+
color: white;
1367+
border-radius: 50px;
1368+
font-weight: 600;
1369+
font-size: 1rem;
1370+
transition: all var(--transition-normal);
1371+
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
1372+
}
1373+
1374+
.btn-github:hover {
1375+
transform: translateY(-3px);
1376+
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
1377+
color: white;
1378+
}
1379+
13091380
.portfolio-grid {
13101381
display: grid;
13111382
gap: 3rem;

index.html

Lines changed: 18 additions & 2 deletions
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://github.com/danribes/" class="nav-link" target="_blank" rel="noopener noreferrer">GitHub</a></li>
3334
<li><a href="https://drive.google.com/file/d/1_syLG7xnnlKG63AipAUNYFiR4CaOWueQ/view?usp=drive_link" class="nav-link" target="_blank" rel="noopener noreferrer">Resume</a></li>
3435
<li><a href="#contact" class="nav-link cta-button">Contact</a></li>
3536
</ul>
@@ -67,8 +68,8 @@ <h2 class="hero-subtitle">Senior Health Economist</h2>
6768
</div>
6869
<div class="hero-buttons">
6970
<a href="#contact" class="btn btn-primary">Get In Touch</a>
70-
<a href="https://drive.google.com/file/d/1_syLG7xnnlKG63AipAUNYFiR4CaOWueQ/view?usp=drive_link" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">Download Resume</a>
71-
<a href="#portfolio" class="btn btn-outline">View Portfolio</a>
71+
<a href="https://github.com/danribes/" class="btn btn-secondary" target="_blank" rel="noopener noreferrer">🔗 GitHub Projects</a>
72+
<a href="https://drive.google.com/file/d/1_syLG7xnnlKG63AipAUNYFiR4CaOWueQ/view?usp=drive_link" class="btn btn-outline" target="_blank" rel="noopener noreferrer">Download Resume</a>
7273
</div>
7374
</div>
7475
<div class="hero-image">
@@ -362,6 +363,16 @@ <h4>Cardiometabolic</h4>
362363
<h2 class="section-title">Featured Projects</h2>
363364
<p class="section-subtitle">Showcase of innovative health economics work</p>
364365
</div>
366+
<div class="github-callout">
367+
<div class="github-icon">💻</div>
368+
<div class="github-content">
369+
<h3>Explore More on GitHub</h3>
370+
<p>Visit my GitHub profile to see additional portfolio projects, code repositories, and open-source contributions in health economics, blockchain, and AI integration.</p>
371+
<a href="https://github.com/danribes/" class="btn btn-github" target="_blank" rel="noopener noreferrer">
372+
🔗 View GitHub Portfolio
373+
</a>
374+
</div>
375+
</div>
365376
<div class="portfolio-grid">
366377
<div class="portfolio-card featured">
367378
<div class="portfolio-header">
@@ -666,6 +677,11 @@ <h3>Location</h3>
666677
<h3>LinkedIn</h3>
667678
<a href="https://www.linkedin.com/in/daniel-ribes-health-economics-and-blockchain/" target="_blank">Connect on LinkedIn</a>
668679
</div>
680+
<div class="contact-card">
681+
<div class="contact-icon">💻</div>
682+
<h3>GitHub</h3>
683+
<a href="https://github.com/danribes/" target="_blank" rel="noopener noreferrer">View Portfolio Projects</a>
684+
</div>
669685
<div class="contact-card">
670686
<div class="contact-icon">📄</div>
671687
<h3>Resume</h3>

0 commit comments

Comments
 (0)