I'm setting up a new Next.js 13 project with the following folder structure:
- app
- blog
- page.jsx
I also have another page in the blog directory called test.jsx. However, when I try to access it using "localhost:3000/blog/test" or any other component name, I receive a 404 error.
How can I correctly reach the test.jsx page in my Next.js project?