When displaying posts of type "Post," posts of type "Page" are also shown.
I changed onlyNewsletter: false to onlyPost: true to achieve the desired effect.
File:
notionic/pages/page/[page].js Line:18
Currently:
const posts = await getAllPosts({ onlyNewsletter: false })
Should it be:
const posts = await getAllPosts({ onlyPost: true })