7 questions
1
vote
0
answers
53
views
Tab groups inside a modal with parallel & intercepting routes
In Next.js 15, when using Parallel Routes together with Intercepting Routes, is it possible to have Tab Groups inside a Modal?
In my case, when the user clicks a link on the homepage (or any other ...
0
votes
0
answers
31
views
Why am i seeing 404 with parallel routes in next js?
I'm building a Next.js 14 App Router project using Parallel Routing, and I've created a reusable modal system using a parallel route @window/profile
My goal is to be able to show this modal (profile) ...
1
vote
0
answers
41
views
Having Difficulty With Nextjs Parallel and Intercepting Routes
I am trying to get intercepting / parallel routes working for a modal but am having issues.
As you can see here is my current setup in my events folder. within the main page.tsx I am mapping events ...
0
votes
0
answers
187
views
I have a problem with next parallel route for modal
I'm working on a Next project find on Youtube and I'm stuck using modal, I implemented the logic and it seems to work but it doesn't show on the screen.
I have a list of items (posts) on the profile ...
0
votes
1
answer
266
views
How to use parallel routing (of NextJS) with MUI tabs?
We have tabs component of MUI and we have parallel routing of slot.
I tried creating this dir structure. But not working properly.
Reloading throws error for dashboard/featured
dashboard/ shows ...
0
votes
1
answer
196
views
Next.js Parallel Routes with WebPack
I am using parallel routes in my Next.js application. I have a dashboard, which consists of header and content, thus the directory structure:
Dashboard
@header
loading.tsx
page.tsx
@content
loading....
2
votes
0
answers
208
views
Next.js Parallel Route and Intercepting Route compiled on dev mode, but not working on production build
We are working on a Next.js 14 project with the following routes:
Our App router
app/[lang]/(frontend)/...
app/[lang]/(admin)/admin/...
app/[lang]/(auth)/auth/...
app/[lang]/layout.tsx contains:
<...