Next.js

Next.js is a React framework from Vercel.

Initiate project

npx create-next-app@latest

Conventions

Group pages requiring authentication into route groups, directories surrounded by parentheses, e.g., (auth)/.

src/
  app/
    (auth)/
      dashboard/
        page.tsx
      profile/
        page.tsx

The "(auth)" folder won't appear in the URL. Users see /dashboard, not /auth/dashboard.

Resources

Next.js
Interactive graph
On this page
Initiate project
Conventions
Resources