Skip to main content
The Kit Review
LatestCategoriesAboutNewsletter
The Kit Review

Writing on design, code, and the craft of shipping software.

Read

  • Latest
  • Categories
  • About
  • Newsletter
  • Search

Sections

  • Technology
  • Design
  • Engineering
  • AI & ML

Subscribe

Get new essays in your inbox.

© 2026 The Kit Review. All rights reserved.

RSS FeedSitemapAdmin Panel
technology Edit

The Complete Guide to Next.js 16 App Router

Everything you need to know about Next.js 16's App Router — from layouts and loading states to parallel routes and intercepting routes.

SC
Sarah Chen
July 19, 2026·1 min read
The Complete Guide to Next.js 16 App Router

What Changed in Next.js 16

Next.js 16 brings significant improvements to the App Router, making it the definitive way to build React applications. The key changes include improved streaming, better error handling, and new route patterns.

Layouts: The Foundation

Layouts are the building blocks of your application's UI architecture. They persist across navigations and maintain state.

Warning

Layouts do not re-render on navigation. If you need fresh data on every navigation, use a page component instead.

Loading States

The loading.tsx convention gives you instant loading UI.

Route Groups

Organize routes without affecting URLs using parenthesized folders.

Server Components by Default

Every component in the App Router is a Server Component unless you opt in with "use client". This means zero JavaScript shipped to the client by default, direct database access in components, and smaller bundle sizes.

Parallel Routes

Render multiple pages simultaneously in the same layout. This is incredibly powerful for dashboards where independent sections load at different speeds.

Share
#nextjs#react#typescript
SC

Written by

Sarah Chen

admin

Senior frontend engineer and tech writer. Passionate about React, TypeScript, and building great developer experiences. Previously at Vercel and Stripe.

Comments (2)

LN
Lisa Nakamuraabout 2 months ago

Great overview! One question — how do you handle authentication in the App Router? I've been struggling with middleware vs layout-level auth checks.

AP
Alex Petrovabout 2 months ago

The parallel routes section was incredibly helpful. We just implemented this pattern in our dashboard and it improved perceived load time significantly.

Keep reading

Read Building a Real-Time Dashboard with Server-Sent Events
Building a Real-Time Dashboard with Server-Sent Events

technology

Building a Real-Time Dashboard with Server-Sent Events

WebSockets aren't always the answer. Learn how Server-Sent Events provide a simpler, more reliable way to push real-time data to your dashboard.

MRMarcus Rivera·Jun 23, 2026
4,150
Previous

Mastering TypeScript Generics: Real-World Patterns

Next

Building a Design System with Tailwind CSS v4 and React