File-based Routing
Next.js derives your URL structure directly from your folder tree inside app/. This lesson covers every routing primitive you'll use in a real project.
Topics Covered
- Static segments:
app/about/page.tsx - Dynamic segments:
[slug],[...slug],[[...slug]] - Route Groups with
(groupName) - Parallel Routes using
@slotfolders - Intercepting Routes with
(..)convention