Is it required to put the signin and signup components inside api/auth path? because I put mine same as other pages file.
|- pages
|- api (folder)
|- auth (folder)
|- _app.js
|- _index.js
|- login.js #import Signin component for design
|- signup.js #import Register component for design
|- components
|- credentials (folder)
|- Signin.js
|- Register.js
I am confused wheter to follow other file structure or my method is fine.