I was just working on this today and I had the problem where I couldn't use GetServerSideProps on the app/page.tsx file.
So looking into it, I stumbled accross this documentation:
https://nextjs.org/docs/app/building-your-application/data-fetching/fetching
Look at the first example, the key is to insert the "async" into the "export default async function Page() (...)
" for it to properly work. It worked very well for me for server side loading and display of data.