feat(quotesdb): add footer with contact email to all pages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
quotesdb
Elijah Voigt 3 months ago
parent 4d4edae841
commit ab76d35bd5

@ -89,6 +89,9 @@ fn app() -> Html {
<main class="main-content"> <main class="main-content">
<Switch<Route> render={switch} /> <Switch<Route> render={switch} />
</main> </main>
<footer class="site-footer">
<p>{ "Contact: " }<a href="mailto:quotes@elijah.run">{ "quotes@elijah.run" }</a></p>
</footer>
</BrowserRouter> </BrowserRouter>
} }
} }

@ -162,6 +162,24 @@ code {
padding: 2rem 1.5rem; padding: 2rem 1.5rem;
} }
/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
border-top: 1px solid var(--color-border);
padding: 1rem 1.5rem;
text-align: center;
font-size: 0.85rem;
color: var(--color-text-muted);
}
.site-footer a {
color: var(--color-text-muted);
}
.site-footer a:hover {
color: var(--color-accent);
text-decoration: underline;
}
/* ── Buttons ───────────────────────────────────────────────── */ /* ── Buttons ───────────────────────────────────────────────── */
.btn { .btn {
display: inline-flex; display: inline-flex;

Loading…
Cancel
Save