feat: cover image display + date formatting + footer spacing

- PostCard: render coverImage above meta/content with lazy loading
- Post detail: render coverImage below title with lazy loading
- Format dates via toLocaleDateString (e.g. Jan 15, 2025)
- Footer top margin: mt-20 → mt-16
This commit is contained in:
2026-06-01 22:50:10 -05:00
parent 06481d0c26
commit 7a17d4c538
3 changed files with 21 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
export function Footer() {
return (
<footer className="border-t border-border mt-20 py-8 text-center">
<footer className="border-t border-border mt-16 py-8 text-center">
<p className="font-mono text-sm text-ink-soft">
© {new Date().getFullYear()} blog. All rights reserved.
</p>