NextJS Entrypoints
Where is the App Entrypoint?
In React, App.jsx/App.tsx is the entrypoint to the application.
In NextJS Pages Router (NextJS <12), _app.tsx is the entrypoint to the application.
In NextJS App Router (NextJS 13+), layout.tsx is the entrypoint to the application.