So I'm creating a generic marketing site for a customer and I'm having some issues with subdirectory routing
As far as I'm aware the routing should be as follows.
In the app folder I have a page.tsx
When I want to make a subroute to for ex: localhost:8080/foo/bar, I should create 2 subdirectories.
Foo and Bar. Inside bar I should create a page.tsx and next should handle the routing from there.
You can see in my first screenshot that I have done exactly that with the producten/afsluitingen/page.tsx file.
The problem now is apparent in my second screenshot, IE next routes all requests through producten and so nothing loads correctly anymore
My nextjs is in screenshot number 3.
What am I doing wrong?