How can I make the main layout exclude a directory like /dashboard?
Answered
Asiatic Lion posted this in #help-forum
Asiatic LionOP
Guys how can I make the main layout exclude a directory like /dashboard?
I want to make the main navbar to be not shown in /dashboard/*
I have another navbar for dashboard in /dashboard/layout.tsx, now I see two navbars in /dashboard/*
I want to make the main navbar to be not shown in /dashboard/*
I have another navbar for dashboard in /dashboard/layout.tsx, now I see two navbars in /dashboard/*
Answered by B33fb0n3
you can use route groups. Put it into an exclusive route group and give it his own layout. For example like this: https://nextjs.org/_next/image?url=%2Fdocs%2Fdark%2Froute-group-organisation.png&w=1920&q=75
3 Replies
@Asiatic Lion Guys how can I make the main layout exclude a directory like /dashboard?
I want to make the main navbar to be not shown in /dashboard/*
I have another navbar for dashboard in /dashboard/layout.tsx, now I see two navbars in /dashboard/*
you can use route groups. Put it into an exclusive route group and give it his own layout. For example like this: https://nextjs.org/_next/image?url=%2Fdocs%2Fdark%2Froute-group-organisation.png&w=1920&q=75
Answer
happy to help