Tag: react-server-components
-
How to implement pagination in Next.js 13 using the App Router and Server Components
1 I started building a Next.js frontend for a WordPress website, using the App Router and GraphQL plugin to fetch data from WordPress. The homepage is all set up to display the latest posts, and it’s a server component. import PostCard from "./components/post"; import styles from ‘./page.module.scss’ interface Post { title: string; date: string; excerpt:…