import { getPosts } from '@/lib/posts' import { PostSearch } from '@/components/posts/PostSearch' export const metadata = { title: 'Field Notes' } export default async function PostsPage() { const posts = await getPosts() return ( <>

FIELD NOTES /.06

Field Notes

{posts.length > 0 ? ( ) : (

Archive empty.

)} ) }