Full-stack Web Technologies

CHAPTER 5
Route Groups

Route groups are directories whose name is inside parentheses (), and they allow routes inside to share layout

Layouts for some part of the app

With a hierarchy like

NextJS Route Groups Diagram

the (shop) group has a common layout, affecting both /account and /cart, but /checkout only has the root layout.

Different root layouts

If there are different groups as children or /app, then each of these can have a different layout, which will become the root layout for each case:

NextJS Route Groups Diagram 2