Skip to Content
Docs07 Next.js Overview

Next.js overview + learning flow

Use this page as the starting point for Next.js. It’s intentionally link-heavy and brief.

  1. Do the official interactive course:
  1. Then use the docs as your reference (App Router):

Optional code-along (team pick)

What Next.js is (in our stack)

  • A React framework for routing, server rendering, and “server + client” code living in one app.
  • We standardize on App Router (not Pages Router).

Mental model (high level)

Our non-negotiables (short)

  • Default to Server Components; opt into Client Components only when needed.
  • Calls to internal microservices happen server-side only (typically behind tRPC procedures).
  • Validate external input at the boundary (Zod).

Next pages in this repo

  • content/docs/08-nextjs-app-router-boundaries.mdx
Last updated on