I made a site using pages router, it's super small at the moment so I can afford "big" rewrites at the moment, and wanted to try the app router. Migrating over isn't too bad, I did run into an issue when converting my home page (form sending data to API) to a server component (form using server actions). What stumps me is that I know you can call API routes explicitly server-side, but you can also convert them to server actions which I wanted to attempt, and realised I'm not sure how I'd be able to pass the necessary Request argument.
How do I approach this exactly?