These are two advanced App Router features for sophisticated UI layouts. They share a folder-convention syntax.
Parallel Routes (@folder) — render multiple pages in one layout
Parallel routes let a single layout render multiple independent route "slots" simultaneously, each with its own loading/error state. You define slots with @name folders:
app/
layout.tsx
@team/page.tsx → a slot
@analytics/page.tsx → another slot
