The recipes app right now is using the pages router in next, it'd be nice to validate the App Router works as expected as well.
Figure we could:
- Add an
/app-router route (via app/layout.js, app/app-router/page.js)
- Have it take a pokemon name via a query param, e.g.
?name=Pikachu
- Fetch from the GQL endpoint in a server component
Basically the same as the getServerSideProps demo already there