feat: add GitHub, YouTube, and website links to about page and footer

Add Source Code section with GitHub repo link and Demo Video section with
YouTube link to the about page. Add footer links to GitHub, YouTube,
mathewguest.com, and zavage-software.com with Bootstrap Icons and themed
hover styling.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mathew Sir Guest the best
2026-05-07 12:31:53 -06:00
co-authored by Claude Opus 4.6
parent 36c3c712fe
commit 334efc3f6e
3 changed files with 50 additions and 2 deletions
+22
View File
@@ -216,6 +216,28 @@ body {
margin-top: 3rem;
}
.footer-link {
color: var(--text-muted);
text-decoration: none;
margin: 0 0.75rem;
transition: color 0.2s;
}
.footer-link:hover {
color: var(--coral);
}
/* Content links */
.content-section a {
color: var(--coral);
text-decoration: none;
}
.content-section a:hover {
color: var(--coral-light);
text-decoration: underline;
}
/* Game grid */
.game-grid {
border-collapse: collapse;
+14 -2
View File
@@ -38,8 +38,20 @@
<div class="content-section">
<h3>📂 Source Code</h3>
<p>
The source code for this project will be available on GitHub.
<em>Link coming soon.</em>
The source code for this project is available on GitHub:<br>
<a href="https://github.com/mathewguest/wordsearch" target="_blank" rel="noopener">
<i class="bi bi-github"></i> github.com/mathewguest/wordsearch
</a>
</p>
</div>
<div class="content-section">
<h3>🎬 Demo Video</h3>
<p>
Watch a video showing off Claude Code building this project:<br>
<a href="https://youtu.be/3Cr4GnvK7co" target="_blank" rel="noopener">
<i class="bi bi-youtube"></i> Watch on YouTube
</a>
</p>
</div>
{% end %}
+14
View File
@@ -78,6 +78,20 @@
<footer class="site-footer">
<div class="container">
<div class="mb-2">
<a href="https://github.com/mathewguest/wordsearch" target="_blank" rel="noopener" class="footer-link">
<i class="bi bi-github"></i> GitHub
</a>
<a href="https://youtu.be/3Cr4GnvK7co" target="_blank" rel="noopener" class="footer-link">
<i class="bi bi-youtube"></i> YouTube
</a>
<a href="https://mathewguest.com" target="_blank" rel="noopener" class="footer-link">
<i class="bi bi-globe"></i> mathewguest.com
</a>
<a href="https://zavage-software.com" target="_blank" rel="noopener" class="footer-link">
<i class="bi bi-globe"></i> zavage-software.com
</a>
</div>
&copy; 2026 Word Search
</div>
</footer>