Middle
In your resume, it says you developed with Next.js — is that correct? Was it App Router or Pages Router?
sobes.tech AI
Answer from AI
Yes, I have worked with Next.js. The project used the Pages Router — the classic approach where pages are created as files in the pages folder. Each page automatically becomes a route.
For example, the file pages/index.js is the main page, and pages/about.js is the "About Us" page.
App Router is a new concept introduced in Next.js 13, where routes are built based on the app folder with support for server components and more flexible routing. In my experience, I haven't yet worked on projects with App Router.