implementing-parallel-routes

Installation
SKILL.md

Parallel Routes in Next.js 16

Concept

Parallel routes allow you to simultaneously render multiple pages within the same layout. Each route is defined in a "slot" using the @folder naming convention.

Key characteristics:

  • Slots are defined with @ prefix (e.g., @team, @analytics)
  • Each slot is passed as a prop to the parent layout
  • Slots render independently and can have their own loading/error states
  • Navigation within one slot doesn't affect other slots

Basic Structure

app/
├── @team/
│   ├── page.tsx
│   └── default.tsx
Related skills
Installs
4
First Seen
Feb 4, 2026