I'm using app router in Next.js 14 project. And my project folder structure is like this.
-- dashboard/
/page.tsx # main layout is used
/layout.tsx
--create
/page.tsx # I want to hide main layout in this page
/layout.tsx
layout.tsx # main layout, used in ALL pages
I should place /dashboard/create page in dashboard folder. So I think I can't move create page another folder.
How can I hide layout?