One rule
In App Router, your URL comes from your files. A folder becomes a route only when it has a page.tsx file inside it.
app/page.tsx is the home route /. app/team/page.tsx becomes /team. app/projects/new/page.tsx becomes /projects/new.
What counts as a route
Next.js uses file-system routing. You do not write a route table for normal pages.
This is useful in hackathons. A judge or recruiter can open your repo and see your app structure quickly.