Using the App Router in NextJS13, how am I supposed to structure my pages folders?
Answered
American Curl posted this in #help-forum
American CurlOP
Let's say I have 10-20 pages. About us page, Contacts page, Stores page, etc.. Pages can practically be endless which will become hard to navigate especially when there is the components folder, libs, etc.. Can I put all pages in another folder like
/app/pages/about-us/page.tsx
and keep the url site.com/about-us
?Answered by risky
you can use [route groups](https://nextjs.org/docs/app/building-your-application/routing/route-groups)
2 Replies
you can use [route groups](https://nextjs.org/docs/app/building-your-application/routing/route-groups)
Answer
American CurlOP
thanks