Next.js manages routing from the /pages
folder, but I would like to use two different routes for a same component.
I want to have an /about
route and a /a-propos
route that both render the component in the about.js
file.
mywebpage.com/about To show -> pages/about/index.js
and
mywebpage.com/a-propos To show -> pages/about/index.js
Is there an official way of achieving that?