import Link from "next/link"; import type { PostMeta } from "@/lib/posts"; type FieldNotesProps = { posts: PostMeta[]; }; function formatPostDate(date: string) { const parsed = new Date(date); if (Number.isNaN(parsed.getTime())) return date; return parsed.toLocaleDateString("en-US", { year: "numeric", month: "short", day: "2-digit", }); } export function FieldNotes({ posts }: FieldNotesProps) { const recentPosts = posts.slice(0, 4); return (

FIELD NOTES /.04

Blog telemetry from the archive.

All field notes →
{recentPosts.length > 0 ? (
{recentPosts.map((post) => ( {post.title} {post.excerpt && ( {post.excerpt} )} ))}
) : (

NO FIELD NOTES ON RECORD — ARCHIVE OPENS SOON

Visit archive →
)}
); }