I have this `page.tsx` rendering on the server: ```typescript const PostsPage = async () => { const posts = await db.post.findMany({ take: 25, include: { author: true } }); return ( <div> <div> <label>Filter verified posts</label> <input type="checkbox" ... /> // checkbox to filter posts (add query string?) </div> <div> {posts.map(p => (<Post key={p.id} id={p.id} content={p.content} authorName={p.author.name} />))} </div> </div> ); }; ```