+ In internal/templates/base.html, update the footer section (lines 36-48). Add a navigation row of links above the existing copyright paragraph. The links should be:
+ 1. "About" linking to "/about"
+ 2. "GitHub" linking to "https://github.com/NickFoden" with target="_blank" and rel="noopener noreferrer"
+
+ Structure the footer as:
+ ```html
+
+ ```
+
+ In static/css/style.css, add styles for the footer navigation after the existing `footer p` rule (after line 21):
+
+ ```css
+ footer nav.footer_nav {
+ display: flex;
+ justify-content: center;
+ gap: 24px;
+ margin-bottom: 12px;
+ }
+
+ footer nav.footer_nav a {
+ font-size: 14px;
+ text-decoration: none;
+ }
+
+ footer nav.footer_nav a:hover {
+ text-decoration: underline;
+ }
+ ```
+
+ Keep the links simple and consistent with the existing minimal site style. Use plain black links (already handled by the global `a` color rule) with underline on hover.
+
+