I created some routes in the /pages
(next.js) folder and a subfolder /account
.
I want to apply a layout to all pages located in /account
subfolder.
How can I do that easily without applying the layout to every single page in /account
?
Example
I want to apply a layout to profile.js
and settings.js
.
components/
pages/
- home.js
- account/
- profile.js
- settings.js
...
Any suggestion regarding the architecture will be appreciated!