From 40d5c75775adfce4c71f73bd3b0668b61f29a6ac Mon Sep 17 00:00:00 2001 From: kbot Date: Mon, 6 Jul 2026 22:05:55 -0500 Subject: [PATCH] blog: terse archive + tag headers --- app/blog/page.tsx | 9 +++------ app/blog/tags/[tag]/page.tsx | 2 +- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/app/blog/page.tsx b/app/blog/page.tsx index 0c84a5a..bd55c34 100644 --- a/app/blog/page.tsx +++ b/app/blog/page.tsx @@ -9,8 +9,9 @@ export default async function PostsPage() { return ( <>
+

FIELD NOTES /.06

- Posts + Field Notes

@@ -18,11 +19,7 @@ export default async function PostsPage() { ) : (
-

No posts yet

-

The archive is empty.

-

- Publish an MDX post to populate this list and enable archive search. -

+

Archive empty.

)} diff --git a/app/blog/tags/[tag]/page.tsx b/app/blog/tags/[tag]/page.tsx index a590e1c..e679d1c 100644 --- a/app/blog/tags/[tag]/page.tsx +++ b/app/blog/tags/[tag]/page.tsx @@ -43,7 +43,7 @@ export default async function TagPage({ params }: TagPageProps) { return (
-

Tag

+

Tag

{tag.label}

{tag.count} {tag.count === 1 ? 'post' : 'posts'}