An overview of Next Route Groups
Next Route Groups are a way to organize routes in the app directory without changing the URL paths. By enclosing a folder name in parentheses, you can create a Route Group that helps keep related routes together. This allows for better organization and management of routes within the app.
In this example, (admin-routes) (auth-routes) (client-routes)
are route groups. they are grouped together for better organization, without altering URL structure.
The URL path to the unauthorized page will be only /unauthorized
.
Next Route Groups enables you to organize your content logically, create nested layouts, and maintain a clean URL structure.