I have 2 groups (group1) and (group2) with different layouts.tsx files returning <> header, div with {children}</>
I also have a RootLayout in the app folder.
this all works fine when navigating to lages in group1 or group2, but I also have other pages that are just normally in folders within app directly, so: app/routename/page.tsx
When navigating to these pages, there is only raw html, and Im seeing no hydration errors or anything...
tldr:
I have:
- app/(group1)/layout.tsx
- app/(group1)/pagename1/page.tsx
- app/(group2)/layout.tsx
- app/(group12/pagename2/page.tsx
- app/pagename3/page.tsx
- app/layout.tsx
pagename1 and pagename 2 work fine, pagename3 displays raw html.
Am I doing something wrong? (Using tailwindcss btw)