1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32# App Router A minimal example of a Next.js App Router application. Demonstrates server components, client components, dynamic routes, and API route handlers. ## Running Locally 1. Install dependencies: ```sh pnpm install ``` 2. Start the dev server: ```sh pnpm dev ``` 3. Build for production: ```sh pnpm build ``` 4. Preview the production build: ```sh pnpm preview ```