Having pagination clutters the UI and hinders flow. I doubt anyone is using the page search feature anyway, all that really matters is new posts. We should be using infinite scroll, rendering new posts as users scroll down. This should make prefetching easier as now we just need to fetch the next chunk, rather than the current previous/next logic. The chunk size of 12 can remain the same.
Having pagination clutters the UI and hinders flow. I doubt anyone is using the page search feature anyway, all that really matters is new posts. We should be using infinite scroll, rendering new posts as users scroll down. This should make prefetching easier as now we just need to fetch the next chunk, rather than the current previous/next logic. The chunk size of 12 can remain the same.