import type { NextPage } from 'next' import {GetServerSideProps} from 'next'; const HomePage: NextPage = () => null export const getServerSideProps: GetServerSideProps = async () => { return { redirect: { destination: '/games', permanent: false, }, }; } export default HomePage