Getting Started with Next.js

1 min read

This is an example note about getting started with Next.js. Notes are meant to be short, scannable posts with quick ideas and learnings.

Key Points

  • Next.js is a React framework for production
  • It supports both server-side rendering and static site generation
  • The App Router provides a great developer experience

Quick Tip

Use the generateStaticParams function to pre-render pages at build time for better performance.