Routing
The App Router in the app/ directory is the current recommended Next.js router. Its components are React Server Components by default.
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.