Understanding getStaticProps for Static Site Generation In this blog post, we will dive into the powerful Next.js function called getStaticProps....
The “_app.js” File & Wrapper Components in Next.js
Next.js is a popular React framework used for building server-side rendered (SSR) and static websites. It provides developers with powerful features...
NextJS: Linking Between Pages
In Next.js, linking between pages is typically done using the built-in Link component provided by the next/link module. This component allows you to...
NextJS: Extracting Dynamic Route Data using useRouter hook
In the previous post we talked about how to create dynamic pages, and now let's talk about extracting dynamic route data of each page. Creating a...
NextJS: Creating Dynamic Pages
In the previous post we talked about how to create nested paths in NextJS, now let's discuss how to make dynamic pages. Next.js is a powerful React...
NextJS: Adding Nested Pages / Paths
In our previous post, we explored how to create a NextJS project, generate our first pages, and use the files in the "pages" folder to define routes...