I like a modular architecture and I'd love to have something like:
/pages
--/somepage
----/index.tsx
----/_components
------/ComponentA.tsx
------/ComponentB.tsx
Rather than having a folder outside of /pages where I keep all of the components for /somepage organized.
However, I understand the /pages folder is treated differently. Are there any performance implications or reasons why I should not do this?