Still True?
← Back to the board
Routing

The App Router in the app/ directory is the current recommended Next.js router. Its components are React Server Components by default.

officialNext.js docs (current)confidence 97%current as of Aug 2026

The App Router is the current recommended way to build a Next.js application. Routes live in the app/ directory where a folder is a route segment that a page.tsx renders. Components under app/ run as React Server Components unless you mark them with the use client directive.

Related claims