Hello all, i'm quite new to remix and i had a question about the layout system.
currently i'm working on my resume website and i have in the routes:
app -> routes -> index.tsx ( this is the layout specified with a outlet within it )
app -> routes -> index -> index.tsx ( this is the home page that should use the layout )
app -> routes -> index -> about.tsx (this is the about page that should use the layout )
I get an error that: child routes are not allowed in index routes. Please remove child routes of routes/app/index
Is there a way that i can achieve this without index child routes? so i can have:
https://fake-portfolio.app/home, https://fake-portfolio.app/about, etc...
Kind regards.