From 334efc3f6e8a29eda722fe1f4f0cd49006d7cb7f Mon Sep 17 00:00:00 2001 From: Mathew Sir Guest the best Date: Thu, 7 May 2026 12:31:53 -0600 Subject: [PATCH] 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 --- static/css/theme.css | 22 ++++++++++++++++++++++ templates/about.html | 16 ++++++++++++++-- templates/base.html | 14 ++++++++++++++ 3 files changed, 50 insertions(+), 2 deletions(-) diff --git a/static/css/theme.css b/static/css/theme.css index 7af8be4..9f46bbf 100644 --- a/static/css/theme.css +++ b/static/css/theme.css @@ -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; diff --git a/templates/about.html b/templates/about.html index 0449d95..4dccd06 100644 --- a/templates/about.html +++ b/templates/about.html @@ -38,8 +38,20 @@

📂 Source Code

- The source code for this project will be available on GitHub. - Link coming soon. + The source code for this project is available on GitHub:
+ + github.com/mathewguest/wordsearch + +

+
+ +
+

🎬 Demo Video

+

+ Watch a video showing off Claude Code building this project:
+ + Watch on YouTube +

{% end %} diff --git a/templates/base.html b/templates/base.html index 187ad6b..46e3d10 100644 --- a/templates/base.html +++ b/templates/base.html @@ -78,6 +78,20 @@