blog: terse archive + tag headers

This commit is contained in:
kbot
2026-07-06 22:05:55 -05:00
parent 2c4e7a6649
commit 40d5c75775
2 changed files with 4 additions and 7 deletions

View File

@@ -9,8 +9,9 @@ export default async function PostsPage() {
return (
<>
<header className="mb-10 border-b border-border pb-8">
<p className="section-label mb-4">FIELD NOTES /.06</p>
<h1 className="heading-xl m-0 text-ink">
Posts
Field Notes
</h1>
</header>
@@ -18,11 +19,7 @@ export default async function PostsPage() {
<PostSearch posts={posts} />
) : (
<section className="empty-state" aria-label="No posts published">
<p className="font-mono text-xs uppercase tracking-[0.22em] text-ink-soft">No posts yet</p>
<h2 className="heading-sm m-0 text-ink">The archive is empty.</h2>
<p className="m-0 max-w-xl text-sm leading-6 text-ink-soft">
Publish an MDX post to populate this list and enable archive search.
</p>
<p className="m-0 text-sm leading-6 text-ink-soft">Archive empty.</p>
</section>
)}
</>