Skip to content

Commit 0c8b461

Browse files
committed
Fix portfolio site issues and improve user experience
- Replace missing TrueSelect project image with styled placeholder - Fix purple button text visibility on project pages - Update CV reference to correct filename (Will Hermann CV.pdf) - Fix PDF file links to open in browser instead of 404 errors - Improve project overlay styling with proper color contrast
1 parent bc20b1b commit 0c8b461

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h2>Who Am I?</h2>
6565
</p>
6666

6767
<div class="resume-download">
68-
<a href="CV Will Hermann.pdf" class="btn btn-primary" download>
68+
<a href="Will Hermann CV.pdf" class="btn btn-primary" target="_blank">
6969
Download Resume
7070
</a>
7171
</div>

css/style.css

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,20 +569,48 @@ header {
569569
transition: var(--transition);
570570
}
571571

572+
.project-placeholder {
573+
width: 100%;
574+
height: 250px;
575+
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
576+
display: flex;
577+
align-items: center;
578+
justify-content: center;
579+
color: var(--bg-color);
580+
text-align: center;
581+
}
582+
583+
.placeholder-content h4 {
584+
font-size: 1.5rem;
585+
margin-bottom: 0.5rem;
586+
font-weight: 700;
587+
}
588+
589+
.placeholder-content p {
590+
font-size: 1rem;
591+
opacity: 0.9;
592+
margin: 0;
593+
}
594+
572595
.project-overlay {
573596
position: absolute;
574597
top: 0;
575598
left: 0;
576599
right: 0;
577600
bottom: 0;
578-
background: rgba(59, 130, 246, 0.9);
601+
background: rgba(167, 139, 250, 0.9);
579602
display: flex;
580603
align-items: center;
581604
justify-content: center;
582605
opacity: 0;
583606
transition: var(--transition);
584607
}
585608

609+
.project-overlay .btn {
610+
color: var(--bg-color) !important;
611+
font-weight: 600 !important;
612+
}
613+
586614
.project-card:hover .project-overlay {
587615
opacity: 1;
588616
}

projects.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,12 @@ <h4>Research Findings:</h4>
245245

246246
<div class="project-card" data-category="tools">
247247
<div class="project-image">
248-
<img src="images/domain-analysis.jpg" alt="TrueSelect AI Recruitment Analysis">
248+
<div class="project-placeholder">
249+
<div class="placeholder-content">
250+
<h4>TrueSelect©</h4>
251+
<p>AI Recruitment Analysis</p>
252+
</div>
253+
</div>
249254
<div class="project-overlay">
250255
<div class="project-links">
251256
<a href="Domain_Analysis Project.pdf" class="btn btn-primary" target="_blank">View Report</a>

0 commit comments

Comments
 (0)